or
| function AppointmentInserting(sender, eventArgs) |
| { |
| var idSucursal = $get("ddlSucursal").value + ";" + $get("ddlSucursal").options[$get("ddlSucursal").selectedIndex].text; |
| var idEspecialidad = $get("ddlEspecialidad").value + ";" + $get("ddlEspecialidad").options[$get("ddlEspecialidad").selectedIndex].text; |
| var idMedico = ""; |
| if ($get("ddlMedicos").value == "") |
| { |
| alert("Debe seleccionar el medico"); |
| } |
| else |
| { |
| var idMedico = $get("ddlMedicos").value + ";" + $get("ddlMedicos").options[$get("ddlMedicos").selectedIndex].text; |
| var start = formatDate(eventArgs.get_startTime()); |
| var parametros = "Modo=Insert&Inicio=" + start + |
| "&Sucursal=" + idSucursal + |
| "&Medico=" + idMedico + |
| "&Especialidad=" + idEspecialidad; |
| var url = "CitaMedicoEditor.aspx?" + parametros |
| window.radopen(url, "dlgEdicion"); |
| eventArgs.set_cancel(true); |
| } |
| } |
I would like to access the CSS elements of a skin for other items on the page. My goal is to keep a consistent look and feel across all items without spending a lot of time recreating the work that the Telerik team has already done.
For example, I have a radgrid on my form with the web20 skin selected.
How would I go about extracting the font, color and background image of the radgrid header to apply to the neighboring controls on the page. The form decorator seems useful for form controls but not for box header, literals, etc.
Thanks for any help.
Bill
