We bought your dll Telerik.Web.UI
I am trying to use the editor in my web project but I have few issues
I am loading your dll dynamic just when I need it.
I have access to the editor object but I can't influence the appearances (.css) mainly direction the images in the side of the editor r backward
How can I do this I didn’t find away?
Ander issue I am trying to use (for example) the image manger button
I add to my web.config
<add verb="*" validate="false" path="Telerik.Web.UI.DialogHandler.aspx" type="Telerik.Web.UI.DialogHandler, Telerik.Web.UI"/>
Like in your support doc
First of all what is the smart tag that u kip mention
Second how I can config the viewpate upload pate …
| <telerik:RadGrid ID="grdTrips" runat="server" |
| AutoGenerateColumns="False" |
| EnableEmbeddedSkins="false" |
| Skin="spa" |
| Width="940" |
| ImagesPath="~/App_Themes/aqua/Grid" |
| > |
| <MasterTableView DataKeyNames="ID" |
| AllowSorting="true" |
| AllowMultiColumnSorting="false" |
| ShowHeadersWhenNoRecords="true" |
| AllowNaturalSort="false" |
| AllowPaging="true" |
| PageSize="25" |
| > |
| <Columns> |
| <telerik:GridBoundColumn DataField="ID" ReadOnly="true" Display="false"></telerik:GridBoundColumn> |
| <telerik:GridBoundColumn DataField="VehicleId" ReadOnly="true" Display="false"></telerik:GridBoundColumn> |
| <telerik:GridTemplateColumn UniqueName="Mileage Date" HeaderText="Mileage Date"> |
| <ItemTemplate> |
| <asp:Label ID="lblMileageDate" runat="server" Text='<%# Eval("MileageDate") %>'></asp:Label> |
| </ItemTemplate> |
| </telerik:GridTemplateColumn> |
| <telerik:GridBoundColumn DataField="TripMiles" UniqueName="TripMileage" HeaderText="Trip Mileage" /> |
| <telerik:GridBoundColumn DataField="Description" UniqueName="Description" HeaderText="Description" /> |
| <telerik:GridTemplateColumn UniqueName="Date Stamp" HeaderText="Date Stamp"> |
| <ItemTemplate> |
| <asp:Label ID="lblDateStamp" runat="server" Text='<%# Eval("DateStamp") %>'></asp:Label> |
| </ItemTemplate> |
| </telerik:GridTemplateColumn> |
| <telerik:GridButtonColumn ButtonType="ImageButton" Visible="true" CommandName="Delete" HeaderText="Delete" ConfirmText="Are you sure you want to permanently delete this vehicle trip?" ImageUrl="~/common/images/grid/SmallDelete.png"> |
| <ItemStyle HorizontalAlign="center" Width="30px" /> |
| </telerik:GridButtonColumn> |
| <telerik:GridEditCommandColumn UniqueName="EditCommandColumn" HeaderText="Edit" ButtonType="ImageButton" UpdateText="Upadate" CancelText="Cancel" EditImageUrl="~/common/images/grid/SmallEdit.gif"> |
| <HeaderStyle Width="85px"></HeaderStyle> |
| </telerik:GridEditCommandColumn> |
| </Columns> |
| <EditFormSettings EditFormType="Template" CaptionFormatString="Edit details for vehicle trip with ID {0}" CaptionDataField="ID"> |
| <FormTemplate> |
| <table width="100%" cellpadding="0" cellspacing="0" border="0"> |
| <tr> |
| <td><asp:Label ID="lblVehicleTripEntryDate" runat="server" meta:resourcekey="lblVehicleTripDate"></asp:Label></td> |
| <td><asp:Label ID="lblVehicleTripMileage" runat="server" meta:resourcekey="lblVehicleTripMileage"></asp:Label> |
| </td> |
| <td><asp:Label ID="lblVehicleTripDescription" runat="server" meta:resourcekey="lblVehicleTripDescription"></asp:Label></td> |
| <br /> |
| </tr> |
| <tr> |
| <td> |
| <telerik:RadDatePicker ID="dtpTDate" runat="server" |
| MinDate="01/01/1980" |
| DatePopupButton-Visible="true" |
| DatePopupButton-ImageUrl="~/common/images/co/calendar/datePickerPopup.gif" |
| DatePopupButton-HoverImageUrl="~/common/images/co/calendar/datePickerPopupHover.gif" |
| DatePopupButton-CssClass="cssTelerikPopupImage" |
| DatePopupButton-Width="21" |
| DateInput-Width="50" |
| EnableEmbeddedSkins="false" |
| SelectedDate='<%# Bind("MileageDate") %>' |
| Skin="spa" |
| Width="120" |
| > |
| <Calendar ID="caldtTDate" runat="server" |
| BackColor="#CDF4FE" |
| EnableMultiSelect="false" |
| FastNavigationNextImage="~/common/images/calendar/cal_nextMonthDouble.gif" |
| FastNavigationPrevImage="~/common/images/calendar/cal_prevMonthDouble.gif" |
| NavigationNextImage="~/common/images/calendar/cal_nextMonth.gif" |
| NavigationPrevImage="~/common/images/calendar/cal_prevMonth.gif" |
| ShowColumnHeaders="true" |
| ShowRowHeaders="false" |
| DefaultCellPadding="5" |
| CalendarTableStyle-BorderWidth="1" |
| CalendarTableStyle-BorderColor="#90CCF7" |
| FastNavigationSettings-CancelButtonCaption="Cancel" |
| FastNavigationSettings-EnableTodayButtonSelection="true" |
| FastNavigationSettings-OkButtonCaption="Ok" |
| FastNavigationSettings-TodayButtonCaption="Today" |
| FastNavigationStyle-BackColor="#CDF4FE" |
| FastNavigationStyle-BorderColor="#90CCF7" |
| FastNavigationStyle-BorderWidth="2" |
| EnableMonthYearFastNavigation="true" |
| UseColumnHeadersAsSelectors="false" |
| UseRowHeadersAsSelectors="false" |
| > |
| </Calendar> |
| </telerik:RadDatePicker> |
| </td> |
| <td > |
| <telerik:RadTextBox ID="txtVehicleTripMileage" |
| runat="server" |
| EnableEmbeddedSkins="false" |
| EmptyMessage="Required" |
| SelectionOnFocus="CaretToBeginning" |
| Skin="spa" |
| MaxLength="100" |
| Text='<%# Bind( "TripMiles") %>' |
| Width="350" ValidationGroup="DataEntry" |
| ></telerik:RadTextBox> |
| <asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ControlToValidate="txtVehicleTripMileage" Display="none" ValidationGroup="DataEntry"></asp:RequiredFieldValidator> |
| </td> |
| <td> |
| <telerik:RadTextBox ID="txtDescription" |
| runat="server" |
| EnableEmbeddedSkins="false" |
| EmptyMessage="Required" |
| SelectionOnFocus="CaretToBeginning" |
| Skin="spa" |
| MaxLength="100" |
| Text='<%# Bind( "Description") %>' |
| Width="350" ValidationGroup="DataEntry" |
| ></telerik:RadTextBox> |
| <asp:RequiredFieldValidator ID="rfvDescription" runat="server" ControlToValidate="txtDescription" Display="none" ValidationGroup="DataEntry"></asp:RequiredFieldValidator> |
| </td> |
| </tr> |
| <tr> |
| <td colspan="3"> |
| <asp:Button ID="btnUpdate" Text="Update" runat="server" CommandName="Update" CausesValidation="False"></asp:Button> |
| <asp:Button ID="btnCancel" Text="Cancel" runat="server" CausesValidation="False" CommandName="Cancel"></asp:Button> |
| </td> |
| </tr> |
| </table> |
| </FormTemplate> |
| </EditFormSettings> |
| <NoRecordsTemplate> |
| <div style="border: solid 1px #666666; background-color: #eeeeee; color: #CE2020; width: 900px; margin-left: 20px; margin-right: 20px; margin-top: 20px; text-align: center; font-weight: bold; padding-top: 5px; padding-bottom: 5px;"> |
| <table cellpadding="2" cellspacing="2"> |
| <tr> |
| <td><asp:image ID="imgNoRecords" runat="server" ImageUrl="~/common/images/icons/circle/RedX16.png" /></td> |
| <td><span style=" font-size: 100%;">No records exist.</span></td> |
| </tr> |
| </table> |
| </div> |
| </NoRecordsTemplate> |
| </MasterTableView> |
| <ClientSettings EnableRowHoverStyle="true" /> |
| </telerik:RadGrid> |
I was able to put a radEditor control on a page hosted by WSS 3.0. The problem is that the control wills not response to any user input. Has anybody ran into this problem and was able to solved it.
The version of Telerik.Web.UI.dll is 2008.3.1125.20.
Thanks
first dvrs
THIS IS Channel 1
this is channel 2
Unassigned Channel 3
Unassigned Channel 4
Unassigned Channel 5
The three unassigned channels do not have checkboxes, the first two do, and the parent "first dvrs" also has a checkbox.
If I check the checkboxes for channel 1 and 2, the parent sets to indeterminate. That is because the last 3 channels have no checkbox and cannot be selected(and I don't want them to be, becuase they are unassigned).
Is there a way to get the parent to only react to the state of the child nodes that have check boxes and to ignore the state of the child nodes that do not have checkboxes?