I would like to remove the "Apply" button in the "RGB Sliders" tab of a RadColorPicker so that the functionality of setting a colour more closely resembles that of the "Web Palette" tab, which does not need an "Apply" button click for the colour to be set.
I would like this to be done in the code behind.
My RadColorPicker in its current form:
RadColorPicker colourPicker = new RadColorPicker();
colourPicker.ShowIcon = false;
colourPicker.AutoPostBack = true;
colourPicker.ShowEmptyColor = false;
colourPicker.PaletteModes = PaletteModes.RGBSliders;
You can achieve this by CSS.
This will hide your apply button.
Sikandar