Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
97 views
I created a Custom Portal Application that uses Windows Workflow on the back-end and Telerik Contols for the View. I use the RadWindow control for each Portlet (Module) and everything works beautifully, really excellent tools.

Is there a way to share JavaScript (WebResouce.axd requests) between RadWindows(Iframes) and the Parent Page.
Most of my RadWindows have some combination of a RadGrid, RadToolbar, RadTabStrip, and maybe some RadMaskTextBoxes and ComboBoxes.

The reason I ask is because requests for the same scripts are being made for each Radwindow. Each RadWindow has its own copy of the Javascript.

I have placed ScriptManagers on the MasterPage and on PortletWindow.aspx (which is my Portlet controller and the target of the RadWindow Controls).

I realize that this is probably not possible, and things work great on a High speed connection but I thought I would ask since everytime a Portlet is added 200kb or so gets downloaded.

This means that if the user has 6 Windows open in their Workspace Firebug is telling me that 1.2mb was downloaded.

Thanks,
Marc



Tervel
Telerik team
 answered on 17 Apr 2009
8 answers
244 views
I updated my tree view to load its child nodes via web service, but am experiencing problems with ContentCssClass. I am setting this property in the RadTreeNodeData objects that are returned from the web service, but the css class that I specified doesn't appear in the divs that are returned (they only have a class of rtTop).

When support for ContentCssClass was added recently, was support for it in a web service scenario perhaps overlooked?

Thanks,
Ross
Atanas Korchev
Telerik team
 answered on 17 Apr 2009
1 answer
83 views
Hi,

I'm populating several comboboxes clientside, setting both the Text and Value.  However when I submit the form back to the serverside the combox's SelectedValue property is always "".

What troubleshooting steps can I take?

Thanks,
Alex
Veselin Vasilev
Telerik team
 answered on 17 Apr 2009
1 answer
143 views
Im having a hard time getting the paging to work. I tried this the easy way and just databound membership.getallusers and it seemed to work fine only paging didn't work. Then I followed these instructions. Still does not work. I know the instructions work because I just bound to an asp:gridview autogenerated the columns turned on paging and it worked fine. When I try the same with the radgrid i have data but no paging. Im sure I'm doing something wrong I just don't know what....

  <asp:ObjectDataSource ID="objdsUsers" runat="server" selectmethod="CustomGetAllUsers" typename="MyNameSpace.Data.GetAllUsers"></asp:ObjectDataSource> 
              <asp:gridview id="gvUsers" allowpaging="true" runat="server" autogeneratecolumns="true" pagesize="2" pagersettings-mode="Numeric" 
                datasourceid="objdsUsers" /> 
                 <telerik:radgrid id="rgUsers" pagesize="2" runat="server" allowfilteringbycolumn="True" 
                    allowpaging="True" allowcustompaging="true" allowsorting="True" autogeneratecolumns="False" 
                    datasourceid="objdsUsers" 
                    gridlines="None" onupdatecommand="rgUsers_Update" skin="Gray" 
                    > 
                    <headercontextmenu enabletheming="True"
                       <collapseanimation duration="200" type="OutQuint" /> 
                    </headercontextmenu> 
                    <mastertableview editformsettings-editformtype="Template" editmode="EditForms"
                    <headerstyle font-size="X-Small" /> 
                       <columns> 
                          <telerik:grideditcommandcolumn canceltext="Cancel" edittext="Edit" 
                             updatetext="Save" /> 
                          <telerik:gridboundcolumn datafield="UserName" headertext="Username" /> 
                          <telerik:gridboundcolumn datafield="Email" headertext="E-mail" /> 
                          <telerik:gridcheckboxcolumn datafield="IsApproved" headertext="Is Approved" 
                             readonly="true" /> 
                          <telerik:gridcheckboxcolumn datafield="IsLockedOut" headertext="Locked Out" /> 
                          <telerik:gridboundcolumn datafield="CreationDate" headertext="Registered" /> 
                          <telerik:gridboundcolumn datafield="LastLoginDate" headertext="Last Login" /> 
                       </columns> 
                       <editformsettings editformtype="Template"
                          <editcolumn uniquename="rdCommondColumnEdit" /> 
                          <formtemplate> 
                             <div class="formarea useredit"
                                <h1 class="title"
                                   Edit <strong><%# DataBinder.Eval(Container,"DataItem.UserName") %></strong></h1> 
                                <fieldset> 
                                   <ul> 
                                      <li> 
                                         <label>Username:</label> 
                                         <telerik:radtextbox focusedstyle-cssclass="textbox focused" runat="server"  text='<%# DataBinder.Eval(Container,"DataItem.UserName") %>' /> 
                                           <asp:textbox id="txtUsername" runat="server" text='<%# DataBinder.Eval(Container,"DataItem.UserName") %>' /> 
                                      </li> 
</ul> 
                                </fieldset> 
                             </div> 
                          </formtemplate> 
                       </editformsettings> 
                       <rowindicatorcolumn> 
                          <headerstyle width="20px" /> 
                       </rowindicatorcolumn> 
                       <expandcollapsecolumn> 
                          <headerstyle width="20px" /> 
                       </expandcollapsecolumn> 
                    </mastertableview> 
                    <pagerstyle mode="Slider" alwaysvisible="true" /> 
                    <filtermenu enabletheming="True"
                       <collapseanimation duration="200" type="OutQuint" /> 
                    </filtermenu> 
                 </telerik:radgrid> 


Please pardon the messy code as its a work in progress and I've been exploring the grid a bit
Nikolay Rusev
Telerik team
 answered on 17 Apr 2009
3 answers
138 views
I am running on IE8 , and the window doesn't display the whole page.
You can trying open your sample page http://demos.telerik.com/schedulebuilder/ with IE8.. it's all screwed up
Georgi Tunev
Telerik team
 answered on 17 Apr 2009
2 answers
356 views

Hello,

I use a RadTabStrip with 4 Tabs and I need to disable some tabs at some time.

I tried it with the following code:

    Private Sub DisbableTab(ByVal actualTab As Integer)  
 
        Dim Tabs As RadTabStrip = RadTabStrip1  
        For Each tab As RadTab In Tabs.GetAllTabs()  
            If tab IsNot Nothing And tab.Index = actualTab Then 
                tab.PostBack = False 
            End If 
        Next 
 
    End Sub 


The postback-Event now not fires, but the Tabs get marked as selected if we click with the mouse on the tab.

How can we supress this?

Thanks

Christian
Christian
Top achievements
Rank 1
 answered on 17 Apr 2009
3 answers
822 views
Hi,
  Is there a resource from where we can download the different animated loading gif images for RadAjaxLoadingPanel;
similar to the ones shown in http://demos.telerik.com/aspnet-ajax/Ajax/Examples/LoadingPanel/LoadingImages/DefaultCS.aspx



Thanks,
Sayak
Dimo
Telerik team
 answered on 17 Apr 2009
1 answer
127 views
Am I missing something? Why do all the themes have a blue scroll bar for multi-line text, grids, combo boxes, etc?

I thought those used to be colorized for the theme?

Q1 2009 RadControls for aspnet ajax.

thanks.
Dimo
Telerik team
 answered on 17 Apr 2009
1 answer
61 views
Does anyone have a link to an example of using Declarative client-side binding without using a webservice.  For instance I would like to have GetRecords and GetRecordsCount methods live in my aspx code behind page.  I've seen references saying this is possible but no real examples. Thanks

Shinu
Top achievements
Rank 2
 answered on 17 Apr 2009
1 answer
91 views
Hello,
we use RadEditor for Moss in version 5.3.1.
Content was placed in RadEditor Webparts.

Now we want update to version 5.4.

Old content from RadEditor 5.3.1 webparts are lost.
Only content from the new version 5.4 will displayed.

Is there a possibility to get the content in the new wepbart ?

Controls are not the problem.

Greatings
Alex

Stanimir
Telerik team
 answered on 17 Apr 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?