Hello,
I have a simple scenario, one RadWindow that opens another url. It works perfectly fine until I close the RadWindow (without refreshing the main page). I have tried to close the window using some JavaScript but I can replicate when I click the X button of the RadWindow. The window closes but the next time I click my lnkClient button the oWnd on the JavaScript function returns null, even though the id is passed correctly to the $find function. As a result the window cannot open again until I postback my page. I have read about DestroyOnClose property that should be false, but I have tried that and didn't work.
<script type="text/javascript"> function OpenWindow() { var oWnd = $find($("[id$=RadWindow1]").attr("id")); oWnd.show(); return false; }</script><asp:LinkButton ID="lnkClient" runat="server" text="Open" OnClientClick="return OpenWindow();"></asp:LinkButton><telerik:RadWindow ID="RadWindow1" runat="server" VisibleOnPageLoad="false" NavigateUrl="/somepage.aspx" Modal="false"></telerik:RadWindow>
| <telerik:RadDatePicker ID="beginDateTimePicker" runat="server" Skin="Vista"> |
| <DateInput LabelCssClass="radLabelCss_Vista" Skin="Vista" EmptyMessage="mm/dd/yyyy" |
| DateFormat="MM/dd/yyyy"> |
| <EmptyMessageStyle Font-Italic="True" Font-Size="8pt" /> |
| <HoveredStyle Font-Italic="True" Font-Size="8pt" /> |
| </DateInput> |
| <Calendar Skin="Vista" UseColumnHeadersAsSelectors="False" UseRowHeadersAsSelectors="False" |
| ViewSelectorText="x" ShowOtherMonthsDays="False" ShowRowHeaders="False"> |
| <SpecialDays> |
| <telerik:RadCalendarDay Repeatable="Today"> |
| <ItemStyle CssClass="Yellow" /> |
| </telerik:RadCalendarDay> |
| </SpecialDays> |
| </Calendar> |
| <DatePopupButton CssClass="radPopupImage_Vista" /> |
| </telerik:RadDatePicker> |
Is there a method like GetRadWindowManager for RadToolTipManager as shown in code snippet below?
The goal is to find the RadToolTipManager in an easy and transparent manner like in code below for RadWindowManager in any content page, otherwise one needs to get the id from master page and then use $find, which is not an easy and transparent way of getting the manager object.
var omanager = GetRadWindowManager();Attached is a screenshot of a Column Chart I did using HTMLChart.
I would like to have a button next to each Coil ID in the chart or make each Coil ID a link that a user can click on to open a new RadWindow with a page that has more detailed data from another database table regarding that Coil ID that the user clicked.
The Column Chart is bound to a dataset that gets dynamic data from a database table.
Is it possible to do this?
If so then can you give an example of how to do it?
Sincerely,
Keith Jackson
OrgChart Extended to Export PDF not Show in Adobe Reader
I'm using the functionality to export pdf (CLIENT EXPORT MANAGER ) , but when I try to export an organization chart, as it is quite large (horizontally). the Image that is created is very small, so In Adobe Reader PDF it appears small white images. Even thought if I open the PDF file on a Internet browser (such as Google Chrome or Firefox) it does display the correct images.
Greetings and thanks
Hi,
I am new to telerik grid and need some support.
I want to create row below the MasterTableView with custom filters.
Below is code snippet.
Thanks,
<telerik:RadGrid ID="gvResults" runat="server" PageSize="20" AllowPaging="true" AllowSorting="True" AllowMultiRowSelection="False"
GridLines="none" OnDetailTableDataBind="gvResults_DetailTableDataBind" OnNeedDataSource ="gvResults_NeedDataSource" OnPreRender="gvResults_PreRender">
<PagerStyle Mode="NextPrevNumericAndAdvanced"></PagerStyle>
<MasterTableView DataKeyNames="ProjectName">
<DetailTables>
<telerik:GridTableView DataKeyNames="ProjectName" Name="Emp" >
<DetailTables>
<telerik:GridTableView DataKeyNames="ProjectName" Name="EmpDetails" >
</telerik:GridTableView>
</DetailTables>
</telerik:GridTableView>
</DetailTables>
</MasterTableView>
</telerik:RadGrid>
Does the TagCloud group word stems together? Example: teach, teacher, teaching would all be considered the same as their stem (teach) is identical.
Is there an easy way to exclude non-important words (such as: a, an, the, etc.) outside of the WordsToExclude property? I don't want to have to define a list of these words if not absolutely necessary as I know I will miss a few.
Is there a way to apply a length restriction to the words to be weighted? I would like to avoid things like "no" and "go" from appearing in the TagCloud, and I know these sorts of words will make it through, even if the WordsToExclude property is extensive.
Thanks in advance for your help!
Hello Telerik Team,
i want to use RadImageGallery ​​in the LightBox AreaMode. The problem is, that in the HTML only the ALT tag is generated. But i want also the TITLE tag.
Is there any chance for this?
My second question is, how can i change the NavigationUrl, if im binding binary image from data source.
Best wishes,
Nick
01.<telerik:RadImageGallery runat="server" ID="Gallery"02. DataImageField="Image"03. DataTitleField="Name"04. DataKeyNames="ArtistId"05. DisplayAreaMode="LightBox"06. OnNeedDataSource="NeedDataSource"07. Width="100%" RenderMode="Auto">08. <ThumbnailsAreaSettings ScrollOrientation="Vertical" ShowScrollButtons="false" Height="100%"09. Mode="Thumbnails" ThumbnailWidth="140px" ThumbnailHeight="140px" />10. <ImageAreaSettings />11.</telerik:RadImageGallery>

the most common request we get when it comes to our (rather heavy) use of RadGrid is to allow users to save which columns are visible on the grid (when we allow users to show/hide columns using the contextheader.)
What would be the best method to do this? Is RadPersistenceFramework overkill (does it even allow this?)
Or should we cook up something using custom javascript? No other settings (page, sort, etc) - just toggling the initial "display" setting for various columns.
Thoughts?