Telerik Forums
UI for ASP.NET AJAX Forum
7 answers
380 views

Hi Team,

We have facing some problem while integrating RadScheduler. Please see the below points :

1. We are using advanced template to insert/edit the appointment, we want to display the edit appointment screen when redirecting from another page of the website, we are passing appointment id in the query string and also Mode= Edit, but then also it is displaying the calendar screen. Please suggest.

2. We are using resource control dropdown for displaying the locations for user selection so we want to display the selected location details on the dropdown selected change to the same screen in a span but are unable to access the events. Please suggest the solution for the same.

Your early response will be highly appreciated.

Thanks.
Peter
Telerik team
 answered on 07 Mar 2009
1 answer
369 views
Ok

I have a mix of MS update panels and radgrid. If i dont turn on EnableAjax on radgrid selectedindex & Itemcommand events wont fire when living inside an MS update panel. if i do turn on EnableAjax on the Radgrid & Take it out of the MS Update panel I get "Control Already assocarted etc etc.  Basically I have to remove all MS Ajax i.e Scriptmanager & then the radgrid will work. How can i Use a mix or do i need to convert everything to Radajax... You talk about prometheous and it works on top of MS AjAX . Where is it etc. My Support ran out 1 month ago (sounds like a televsion set lol )

I am using Q3 2008 build vs2008 sp 1.

This is starting to get me worried.

Thanks in adavance Justin
Iana Tsolova
Telerik team
 answered on 07 Mar 2009
2 answers
204 views
I cannot get my RadMultiPage to line up with a VerticalLeft tabstrip. It shows up below the tabstrip instead of along side of it.  If I change it to VerticalRight it works fine and shows up along side of the tab strip.  Also, do nested tabs always show up under the parent tab? If so, how can change the size of the nested tabs so they do not look like the parent tab?

Any help would be greatly appreciated!

Here is my code:

<radM:RadTabStrip ID="tabstripBrandingOptions" runat="server" Orientation="VerticalLeft" 
        SelectedIndex="0" CausesValidation="False" MultiPageID="MultiPageBranding" Skin="Vista"
        <Tabs> 
            <radM:RadTab Text="Add Provider"
            </radM:RadTab> 
            <radM:RadTab Text="Linked Enterprises" runat="server"
            </radM:RadTab> 
            <radM:RadTab Text="Netspoke Pro Options" runat="server"
            </radM:RadTab> 
            <radM:RadTab Text="Branding Options" runat="server"
                <Tabs> 
                    <radM:RadTab Text="Web Conf. Logo"
                    </radM:RadTab> 
                    <radM:RadTab Text="Hub Logo"
                    </radM:RadTab> 
                    <radM:RadTab Text="Marketing Links"
                    </radM:RadTab> 
                    <radM:RadTab Text="Logo Text"
                    </radM:RadTab> 
                </Tabs> 
            </radM:RadTab> 
        </Tabs> 
    </radM:RadTabStrip> 
    <radM:RadMultiPage ID="MultiPageBranding" runat="server" SelectedIndex="0" CssClass="multiPage"
        <radM:RadPageView runat="server"
            <div class="yui-gd"
                <div class="yui-g first leftDiv"
                    <asp:Localize ID="locProviderName" runat="server" Text="Provider Name:" />&nbsp;<span 
                        class="required">*</span> 
                    <br /> 
                    <asp:Localize ID="locProviderType" runat="server" Text="Provider Type:" />&nbsp;<span 
                        class="required">*</span> 
                    <br /> 
                    <asp:Localize ID="locHubGroupDomain" runat="server" Text="Hub Group Domain:" />&nbsp;<span 
                        class="required">*</span> 
                    <br /> 
                    <asp:Localize ID="locDefaultMeetingServer" Text="Default Meeting Server:" runat="server" />&nbsp;<span 
                        class="required">*</span> 
                    <br /> 
                    <asp:Localize ID="locSecureDefaultMeetingServer" Text="Secure Default Meeting Server:" 
                        runat="server" />&nbsp;<span class="required">*</span> 
                    <br /> 
                    <asp:Localize ID="locAppShareHost" Text="App Share Host:" runat="server" />&nbsp;<span 
                        class="required">*</span> 
                    <br /> 
                    <asp:Localize ID="locCustomerHomePage" runat="server" Text="Customer Home Page:" />&nbsp;<span 
                        class="required">*</span> 
                    <br /> 
                    <asp:Localize ID="locDefaultConferenceTitle" runat="server" Text="Default Conference Title:" />&nbsp;<span 
                        class="required">*</span> 
                    <br /> 
                    <asp:Localize ID="locDefaultModeratorEmailSubject" runat="server" Text="Default Moderator Email Subject:" />&nbsp;<span 
                        class="required">*</span> 
                    <br /> 
                    <asp:Localize ID="locDefaultAttendeeEmailSubject" runat="server" Text="Default Attendee Email Subject:" />&nbsp;<span 
                        class="required">*</span> 
                </div> 
                <div class="yui-g rightDiv"
                    <asp:TextBox runat="server" ID="txtProviderName" Width="214px" /> 
                    <asp:RequiredFieldValidator ID="rvProviderName" runat="server" ControlToValidate="txtProviderName" 
                        Display="Dynamic" ErrorMessage="Provider Name is required" SetFocusOnError="True"></asp:RequiredFieldValidator> 
                    &nbsp; 
                    <asp:RegularExpressionValidator ID="revProviderName" runat="server" ErrorMessage="Only alphanumeric characters and spaces allowed." 
                        ControlToValidate="txtProviderName" Display="Dynamic" SetFocusOnError="True" 
                        ValidationExpression="^[0-9a-zA-Z ]+$"></asp:RegularExpressionValidator> 
                    <br /> 
                    <asp:DropDownList ID="ddlProviderType" runat="server" /> 
                    <br /> 
                    <asp:TextBox ID="txtHubGroupDomain" runat="server" onchange="SetText()" Width="214px" /> 
                    <asp:RequiredFieldValidator ID="rvHubGrpDomain" runat="server" ControlToValidate="txtHubGroupDomain" 
                        Display="Dynamic" ErrorMessage="Hub Group Domain is required" SetFocusOnError="True"></asp:RequiredFieldValidator> 
                    &nbsp; 
                    <asp:RegularExpressionValidator ID="revHubGroupDomain" runat="server" ErrorMessage="Not a valid domain name." 
                        ControlToValidate="txtHubGroupDomain" Display="Dynamic" SetFocusOnError="True" 
                        ValidationExpression="^([a-zA-Z0-9]([a-zA-Z0-9\-]{0,61}[a-zA-Z0-9])?\.)+[a-zA-Z]{2,6}$"></asp:RegularExpressionValidator> 
                    <br /> 
                    <asp:TextBox ID="txtDefualtMeetingServer" runat="server" Width="214px" /> 
                    <input id="inpMeetingServerAppend" readonly="readonly" runat="server" type="text" /> 
                    <asp:RequiredFieldValidator ID="rvDefMtngServer" runat="server" ControlToValidate="txtDefualtMeetingServer" 
                        Display="Dynamic" ErrorMessage="Default Meeting Server is required" SetFocusOnError="True"></asp:RequiredFieldValidator> 
                    &nbsp; 
                    <asp:RegularExpressionValidator ID="revdefMeetingServer" runat="server" ErrorMessage="Only numbers, letters, or dashes allowed." 
                        ControlToValidate="txtDefualtMeetingServer" Display="Dynamic" SetFocusOnError="True" 
                        ValidationExpression="(^[a-zA-Z0-9][a-zA-Z0-9-]*[a-zA-Z0-9]$)"></asp:RegularExpressionValidator> 
                    <br /> 
                    <asp:TextBox ID="txtSecureDefaultMeetingServer" runat="server" Width="214px" /> 
                    <input id="inpSecureMeetingServerAppend" readonly="readonly" runat="server" type="text" /> 
                    <asp:RequiredFieldValidator ID="rvSecDefMtngServer" runat="server" ControlToValidate="txtSecureDefaultMeetingServer" 
                        Display="Dynamic" ErrorMessage="Secure Default Meeting Server is required" SetFocusOnError="True"></asp:RequiredFieldValidator> 
                    &nbsp; 
                    <asp:RegularExpressionValidator ID="revSecDefMeetingServer" runat="server" ErrorMessage="Only numbers, letters, or dashes allowed." 
                        ControlToValidate="txtSecureDefaultMeetingServer" Display="Dynamic" SetFocusOnError="True" 
                        ValidationExpression="(^[a-zA-Z0-9][a-zA-Z0-9-]*[a-zA-Z0-9]$)"></asp:RegularExpressionValidator> 
                    <br /> 
                    <asp:TextBox ID="txtAppShareHost" runat="server" Width="214px" /> 
                    <input id="inpAppShareHostAppend" readonly="readonly" runat="server" type="text" /> 
                    <asp:RequiredFieldValidator ID="rvAppShareHost" runat="server" ControlToValidate="txtAppShareHost" 
                        Display="Dynamic" ErrorMessage="App Share Host is required" SetFocusOnError="True"></asp:RequiredFieldValidator> 
                    <asp:RegularExpressionValidator ID="revAppShareHost" runat="server" ErrorMessage="Only numbers, letters, or dashes allowed." 
                        ControlToValidate="txtAppShareHost" Display="Dynamic" SetFocusOnError="True" 
                        ValidationExpression="(^[a-zA-Z0-9][a-zA-Z0-9-]*[a-zA-Z0-9]$)"></asp:RegularExpressionValidator> 
                    <br /> 
                    <asp:TextBox ID="txtCustomerHomePage" runat="server" Width="214px" /> 
                    <asp:RequiredFieldValidator ID="rvCustomerHomePage" runat="server" ControlToValidate="txtCustomerHomePage" 
                        Display="Dynamic" ErrorMessage="Customer Home Page is required" SetFocusOnError="True"></asp:RequiredFieldValidator> 
                    &nbsp;<asp:RegularExpressionValidator ID="revHomePage" runat="server" ErrorMessage="Not a valid url." 
                        ControlToValidate="txtCustomerHomePage" Display="Dynamic" SetFocusOnError="True" 
                        ValidationExpression="http(s)?://([\w-]+\.)+[\w-]+(/[\w- ./?%&amp;=]*)?"></asp:RegularExpressionValidator> 
                    <br /> 
                    <asp:TextBox ID="txtDefaultConferenceTitle" runat="server" Width="214px" /> 
                    <asp:RequiredFieldValidator ID="rvDefaultConferenceTitle" runat="server" ControlToValidate="txtDefaultConferenceTitle" 
                        Display="Dynamic" ErrorMessage="Default Conference Title is required" SetFocusOnError="True"></asp:RequiredFieldValidator> 
                    <br /> 
                    <asp:TextBox ID="txtDefaultModeratorEmailSubject" runat="server" Width="214px" /> 
                    <asp:CheckBox ID="chkModeratorSameAsTitle" runat="server" Text="Same as title" /> 
                    <asp:CustomValidator ControlToValidate="txtDefaultModeratorEmailSubject" ID="valDefaultModeratorEmailSubject" 
                        runat="server" ErrorMessage="Default Moderator Email Subject is required" ValidateEmptyText="true" 
                        SetFocusOnError="true" Display="Dynamic" /> 
                    <br /> 
                    <asp:TextBox ID="txtDefaultAttendeeEmailSubject" runat="server" Width="214px" /> 
                    <asp:CheckBox ID="chkAttendeeSameAsTitle" runat="server" Text="Same as title" /> 
                    <asp:CustomValidator ControlToValidate="txtDefaultAttendeeEmailSubject" ID="valDefaultAttendeeEmailSubject" 
                        runat="server" ErrorMessage="Default Attendee Email Subject is required" ValidateEmptyText="true" 
                        SetFocusOnError="true" Display="Dynamic" /> 
                </div> 
            </div> 
        </radM:RadPageView> 
        <radM:RadPageView runat="server"
            <div id="doc3"
                <asp:UpdateProgress ID="UpdateProgressEnterprises" runat="server" AssociatedUpdatePanelID="updatePanelEnterprises" 
                    DisplayAfter="0"
                    <ProgressTemplate> 
                        <asp:Image ID="imgAjaxProgress" runat="server" ImageUrl="~/images/ajax-loader.gif" /> 
                    </ProgressTemplate> 
                </asp:UpdateProgress> 
                <asp:UpdatePanel ID="updatePanelEnterprises" runat="server"
                    <ContentTemplate> 
                        <div style="width: 900px;"
                            <table class="widetable"
                                <tr> 
                                    <td> 
                                        <strong> 
                                            <asp:Localize ID="Localize3" runat="server" Text="Enterprise Name:" /></strong
                                    </td> 
                                    <td> 
                                        <asp:TextBox ID="txtEnterpriseName" runat="server" Width="214px" /> 
                                    </td> 
                                </tr> 
                                <tr> 
                                    <td> 
                                        <strong> 
                                            <asp:Localize ID="Localize6" runat="server" Text="Enterprise Type:" /></strong
                                    </td> 
                                    <td align="left"
                                        <asp:DropDownList ID="ddlEnterpriseType" runat="server"
                                        </asp:DropDownList> 
                                    </td> 
                                </tr> 
                                <tr> 
                                    <td> 
                                    </td> 
                                    <td align="left"
                                        <asp:Button ID="btnSearchEnterprise" runat="server" CssClass="brandingButton" Text="Search" 
                                            OnClick="btnSearchEnterprise_Click" UseSubmitBehavior="False" CausesValidation="False" /> 
                                    </td> 
                                </tr> 
                                <tr> 
                                    <td> 
                                    </td> 
                                    <td> 
                                    </td> 
                                </tr> 
                            </table> 
                        </div> 
                        <div style="width: 900px;"
                            <table> 
                                <tr> 
                                    <td align="center"
                                        <strong> 
                                            <asp:Localize ID="locAvaiableEnterprises" runat="server" Text="Search Results" /> 
                                        </strong> 
                                    </td> 
                                    <td align="center"
                                    </td> 
                                    <td align="center"
                                        <strong> 
                                            <asp:Localize ID="locSelectedEnterprises" runat="server" Text="Selected Enterprises" /> 
                                        </strong> 
                                    </td> 
                                </tr> 
                                <tr> 
                                    <td> 
                                        <asp:ListBox ID="lstSearchResults" runat="server" Rows="10" SelectionMode="Multiple" 
                                            Width="280px"></asp:ListBox> 
                                    </td> 
                                    <td align="center" valign="middle"
                                        <asp:Button ID="btnAddEnterprise" runat="server" CssClass="brandingButton" OnClick="btnAddEnterprise_Click" 
                                            Text="Add&gt;&gt;" UseSubmitBehavior="False" CausesValidation="False" /> 
                                    </td> 
                                    <td valign="middle"
                                        <asp:ListBox ID="lstSelectedEnterprises" runat="server" Rows="10" SelectionMode="Multiple" 
                                            Width="280px"></asp:ListBox> 
                                    </td> 
                                </tr> 
                                <tr> 
                                    <td align="center"
                                        <asp:Button ID="btnClearResults" runat="server" CausesValidation="False" CssClass="brandingButton" 
                                            OnClick="btnClearResults_Click" Text="Clear Search" UseSubmitBehavior="False" /> 
                                    </td> 
                                    <td> 
                                    </td> 
                                    <td align="center"
                                        <asp:Button ID="btnDeleteSelected" runat="server" CssClass="brandingButton" OnClick="btnDeleteSelected_Click" 
                                            Text="Delete Selected" UseSubmitBehavior="False" CausesValidation="False" /> 
                                    </td> 
                                </tr> 
                            </table> 
                        </div> 
                    </ContentTemplate> 
                    <Triggers> 
                        <asp:AsyncPostBackTrigger ControlID="btnSearchEnterprise" EventName="Click" /> 
                        <asp:AsyncPostBackTrigger ControlID="btnAddEnterprise" EventName="Click" /> 
                        <asp:AsyncPostBackTrigger ControlID="btnDeleteSelected" EventName="Click" /> 
                        <asp:AsyncPostBackTrigger ControlID="btnClearResults" EventName="Click" /> 
                    </Triggers> 
                </asp:UpdatePanel> 
            </div> 
        </radM:RadPageView> 
        <radM:RadPageView runat="server"
            <div class="yui-gb"
                <div class="yui-g first"
                    <strong> 
                        <asp:Localize ID="locScheduleOptions" runat="server" Text="Scheduling/Joining" /></strong><br /> 
                    <asp:CheckBox ID="chkRequirePasscodeChecked" runat="server" Text="Conference private by default" /><br /> 
                    <asp:CheckBox ID="chkJoinNoiseEnabled" runat="server" Text="Audio alert when someone joins" /><br /> 
                    <asp:CheckBox ID="chkCallMyPhoneEnabled" runat="server" Text="Enable call my phone feature" /><br /> 
                    <asp:CheckBox ID="chkPresentationsChecked" runat="server" Text="All uploaded presentations available" /><br /> 
                    <asp:CheckBox ID="chkPollingChecked" runat="server" Text="All uploaded polling questions available" /><br /> 
                    <asp:CheckBox ID="chkWebRecordingConfigEnabled" runat="server" Text="Web recording is modifiable in scheduling" /><br /> 
                    <asp:CheckBox ID="chkRecordAllWeb" runat="server" Text="Record all web conference events" /><br /> 
                </div> 
                <div class="yui-g"
                    <strong> 
                        <asp:Localize ID="locConferenceOptions" runat="server" Text="In Conference" /></strong><br /> 
                    <asp:CheckBox ID="chkQAEnabled" runat="server" Text="Enable Q&A" /><br /> 
                    <asp:CheckBox ID="chkWebRecordingEnabled" runat="server" Text="Enable web recording option" /><br /> 
                    <asp:CheckBox ID="chkChatEnabled" runat="server" Text="Enable chat" /><br /> 
                    <asp:CheckBox ID="chkBlockSharingEntireDesktop" runat="server" Text="Enable desktop sharing" /><br /> 
                    <asp:CheckBox ID="chkAppShareEnabled" runat="server" Text="Enable AppShare" /><br /> 
                    <asp:CheckBox ID="chkSharingVideoEnabled" runat="server" Text="Enable video" /><br /> 
                    <asp:CheckBox ID="chkSharedFilesEnabled" runat="server" Text="Enable file transfer" /><br /> 
                    <asp:CheckBox ID="chkPollingEnabled" runat="server" Text="Enable polling" /><br /> 
                    <asp:CheckBox ID="chkWhiteboardEnabled" runat="server" Text="Enable whiteboard" /><br /> 
                    <asp:CheckBox ID="chkPresentationsEnabled" runat="server" Text="Enable PowerPoint sharing" /><br /> 
                    <asp:CheckBox ID="chkHelpEnabled" runat="server" Text="Enable live help" /><br /> 
                </div> 
                <div class="yui-g"
                    <strong> 
                        <asp:Localize ID="locAppShareOptions" runat="server" Text="AppShare/Communication" /></strong><br /> 
                    <asp:CheckBox ID="chkAppShareMaskingEnabled" runat="server" Text="Hide pop-up windows when sharing" /><br /> 
                    <asp:CheckBox ID="chkGrantControlEnabled" runat="server" Text="Grant control to participants enabled" /><br /> 
                    <asp:CheckBox ID="chkSecure" runat="server" Text="SSL enabled for all conferences by default" /><br /> 
                    <asp:Label ID="lblAppShareColorDepth" runat="server" Text="Set default AppShare color level" /> 
                    <asp:DropDownList ID="ddlAppShareColorDepth" runat="server"
                        <asp:ListItem Text="Low" Value="8" /> 
                        <asp:ListItem Text="High" Value="16" /> 
                    </asp:DropDownList> 
                    <br /> 
                </div> 
            </div> 
        </radM:RadPageView> 
        <radM:RadPageView runat="server"
            <strong> 
                <asp:Localize ID="locWebLogoCurrent" runat="Server" Text="Web Conference Logo:" /> 
            </strong> 
            <asp:Image ID="imgConfLogo" runat="server" CssClass="previewImage" /><br /> 
            <br /> 
            <asp:Localize ID="Localize1" runat="server" Text="Select Conference Logo for upload:" /><br /> 
            <radM:RadUpload ID="RadUploadWebConfLogo" runat="server" InitialFileInputsCount="1" 
                ControlObjectsVisibility="None" MaxFileSize="262144000" MaxFileInputsCount="1" 
                OnValidatingFile="RadUpload_ValidatingFile" Width="100%" EnableFileInputSkinning="false" /> 
            <p> 
                <asp:Localize ID="Localize5" runat="Server" Text="<i><strong>Logo Requirements:</strong><br>&#8226; The file must be in <strong>.jpg or .gif</strong> format<br>&#8226; The image must not exceed <strong>150W x 38H</strong> px<br>&#8226; The file size must not exceed <strong>128</strong> kb</i>." /> 
            </p> 
            <asp:Button ID="btnWebConfLogoPreview" runat="server" Text="Preview" OnClick="btnWebConfLogoPreview_Click" 
                CssClass="brandingButton" UseSubmitBehavior="False" /> 
            <asp:HiddenField ID="hfWebConfLogo" runat="server" /> 
        </radM:RadPageView> 
        <radM:RadPageView runat="server"
            <strong> 
                <asp:Localize ID="locHubLogoCurrent" runat="Server" Text="Conferencing Hub Logo:" /> 
            </strong> 
            <asp:Image ID="imgHeaderLogo" runat="server" CssClass="previewImage" /><br /> 
            <br /> 
            <asp:Localize ID="Localize2" runat="Server" Text="Select Conferencing Hub Logo for upload:" /><br /> 
            <radM:RadUpload ID="RadUploadHeaderLogo" runat="server" InitialFileInputsCount="1" 
                ControlObjectsVisibility="None" MaxFileSize="262144000" MaxFileInputsCount="1" 
                OnValidatingFile="RadUpload_ValidatingFile" Width="100%" EnableFileInputSkinning="false" /> 
            <p> 
                <asp:Localize ID="Localize4" runat="Server" Text="<i><strong>Logo Requirements:</strong><br>&#8226; The file must be in <strong>.jpg or .gif</strong> format<br>&#8226; The image must not exceed <strong>150W x 60H</strong> px<br>&#8226; The file size must not exceed <strong>128</strong> kb</i>." /> 
            </p> 
            <asp:Button ID="btnHeaderLogoPreview" runat="server" Text="Preview" OnClick="btnHeaderLogoPreview_Click" 
                CssClass="brandingButton" UseSubmitBehavior="False" /> 
            <asp:HiddenField ID="hfHeaderLogo" runat="server" /> 
        </radM:RadPageView> 
        <radM:RadPageView runat="server"
            test 
        </radM:RadPageView> 
        <radM:RadPageView runat="server"
            test 
        </radM:RadPageView> 
    </radM:RadMultiPage> 

Here is my css:
.multiPage 
        { 
             
            
            border:1px solid #94A7B5
            background-color:#F0F1EB
            padding:4px
            padding-left:5px
            width:775px
            margin-left:5px;                 
        } 
         
.leftDiv 
    float:left
    width:180px
    line-height:30px
    min-height:300px
    border:1px solid #94A7B5
     
 
 
.rightDiv 
{    
     
    line-height:32px
    min-height:300px
    border:1px solid #94A7B5
    width:350px
 
#doc3 
    border:1px solid #94A7B5
 

Paul
Telerik team
 answered on 07 Mar 2009
1 answer
100 views
Hi,
I am aleready posted some questions before but now I am posting complte scenario

1. I am having a radgrid in which I am having a image buton column called Status ( different kind of images which populate dynamically - only 3 kinds of image alwas i populate)
img1 - performed.gif
img2 - expired.gif
img3 - yet to performed.gif

2. when I click on a image I have to show a Tooltip,the img1 & img 2 have same kind of screen but img3 had different screen: Now to achieve this I took 2 tooltips, If it is possible with one then it is OK.
And whe I mousehover on respective images I need to show their regular tooltip data as follows:
img1 - regular tooltip performed ---onclick open radtooltip1
img2 - regular tooltip expired-- onclick open radtooltip1
img3 - regular tooltip  yet to performed --onclick open radtooltip2
3. my tooltips have text boxes and buttons (Save,cancel & browse)
when I click on browse I have to attach a file and then whe I click on Save button the tooltip needs to be closed automatically and behind the only the grid should be refreshed with the updated status(means the image should be changed) as  follows:

img1 - performed.gif changed to performed.gif
img2 - expired.gif changed to performed.gif
img3 - yet to performed.gif changed to performed.gif
if I click on cancel nothing has to be done.

What I achieved till now

1. showing different tooltips for different images
2. closing tooltip automatiocally by clicking on save button
3. dynamically populating images into grid

need to be addressed
1. showing regular tooltip
2. gridrefressh






Svetlina Anati
Telerik team
 answered on 07 Mar 2009
2 answers
129 views
Hi,

I was looking at your samples and thougth that "Client-side caching" could be a solution for me.
So I messed arround a bit with the sample and found a strange behavior.

To explain it step by step.
Go to http://demos.telerik.com/aspnet-ajax/grid/examples/client/caching/defaultcs.aspx
Enter 5 in the filter Texbox below the ID - and choose "Less than" from the filter dropdown.
---Works like a charme - 4 Recods shown "Page 1 of 1" in paging.
Now choose no Filter from the dropdown - all records are back.
Next choose page 3 from the pager menu.
You have a page starting with ID 21.
Next again enter 5 in the filters edit field of ID
Again choose "Less than" from the filter dropdown.
And - NOTHING HAPPENS!!!!

When you choose page 4, 5, 6 and so on -- you stay on page 3!
Except when you choose page 1 - than the filter works.

Is this a mistake in the sample - or a bug in grid?

Regards

Manfred
ManniAT
Top achievements
Rank 2
 answered on 07 Mar 2009
1 answer
100 views
Hi,

I was wondering if it is possible to set up locked template areas in the rad editor, like you can with dreamweaver templates?

EG say i want my staff to user the editor to edit the contents of quotes sent to our customers - We would have a set layout and format, so I don't want the staff to accidentally mess that up, so I want these area locked, but then other areas free for the staff to edit.

Is this possible?

Thanks
Rumen
Telerik team
 answered on 07 Mar 2009
1 answer
120 views
I am using a Grid with Scroll bar. A space appears in the header between the header row and the Scroll bar position like the Grid given in the following link
http://www.telerik.com/help/aspnet-ajax/grdscrollwithstaticheaders.html

Is there any solution for this issue.
Dimo
Telerik team
 answered on 07 Mar 2009
1 answer
103 views
Hello.
Has anyone had the issue where clicking the Enter key anywhere on a page causes the RadToolTip to appear?  I'm creating an ImageButton that fires the tooltip, and cannot figure out why the Enter key is a trigger. 

Here is the code I'm using.  Am I missing a setting?
Thanks in advance for any help!

_toolTipImage =

new ImageButton();   

 

 

this.Controls.Add(_toolTipImage);  

_toolTip =

new RadToolTip();   

 

 

 

this.Controls.Add(_toolTip);  

_toolTipImage.ID =

"HelpToolTipImage";  

 

 

_toolTip.ID =

"HelpToolTip";  

 

 

_toolTip.TargetControlID = _toolTipImage.ID;

_toolTip.Position =

ToolTipPosition.TopRight;  

 

 

_toolTip.ShowEvent =

ToolTipShowEvent.OnClick;  

 

 

_toolTip.HideEvent =

ToolTipHideEvent.ManualClose;  

 

 

_toolTip.Skin =

"Default";  

 

 

_toolTip.EnableEmbeddedSkins =

false; 

 

 

_toolTip.Text = "Describe action here.";

 

 

Svetlina Anati
Telerik team
 answered on 07 Mar 2009
1 answer
121 views
Hello,

My tooltips don't seem to show a loading animation when they are loading. Do I have to have RadAjaxLoadingPanel on the page for it to work? How can I get that spinning "loading" thing to show up?

Tris.
Svetlina Anati
Telerik team
 answered on 07 Mar 2009
1 answer
107 views

I am using the code from the below link
http://www.telerik.com/community/forums/aspnet-ajax/editor/edit-image-directly-in-image-editor.aspx
to edit the image directly. In that the image not save its showing the error

The error message is can't write in the target folder.

The folder path is showing in the save as text box is http://localhost/testingradimageeditor/Images/Pets_thumb.jpg

Please let me know result for this isssue as quick as possible





Rumen
Telerik team
 answered on 07 Mar 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?