Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
73 views
I can't figure out how to add the code to the site.  I've put the code in the template, but the templates aren't updating on the pages unless I open them individually and save them.  There are hundreds of pages on the site!  Do I really have to open and save hundreds of pages just to be able to use Google Analytics?  What if I need to make changes to my metrics later?!  Will I have to do this every time I need to update the Google JS?  Please help.
Rumen
Telerik team
 answered on 27 Oct 2010
4 answers
274 views
Hi im trying to do something and i cant find they way to do it...
Here is what i want to do...
I have a RadComboBox filled with a datasource and i want to have a button to add what i have selected in the RCB to a temp Radgrid (i got to be able to add as rows as i need from the same RCB) plus i need to be added an editable checkbox column for each row...
i dont want to save anything to database. i just need this radgrid to display the info. My codebehind is VB

Hope someone can help me... and Thanks!

Carlos.
Carlos
Top achievements
Rank 1
 answered on 27 Oct 2010
8 answers
176 views
The Data Source Configuration page doesn't mention the DataReminderField property

-- 
Stuart
Veronica
Telerik team
 answered on 27 Oct 2010
2 answers
106 views
I am dragging from a ListBox to a Treeview.  Everything is going well so far.

I would like to control the way the text appears while it is being dragged (or drug?).  If there is a CSS class I can override, that'd be great. If I need to set the class name onListBoxDragStart for instance, that'd be fine too.  I just need a little help from the experts please.

Thanks!
Jon Shipman
Top achievements
Rank 1
 answered on 27 Oct 2010
5 answers
117 views
The problem is the labels at the bottom are too crowded together... I need some way for the chart to know this and to only give a x axis label ever 20 picels for example...

Can this be done ?

matt
Top achievements
Rank 1
 answered on 27 Oct 2010
4 answers
110 views
Hi all!

I'm created a custom skin based on the Telerik default Skin. And I have a problem with the border color when choose different DOCTYPE. Please attach the files for details. 

_ In "p2.png", it show exactly the color I chose for grid border. I use
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">


But in "p1.png", the border color is totally difference (BLACK). In this case, DOCTYPE  is

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

By the way, I need the "XHTML 1.0 Transitional" for the DOCTYPE.

Need a help from all of you!

Thanks!

Andy.
Andy
Top achievements
Rank 1
 answered on 27 Oct 2010
1 answer
207 views
HI,


Please Help Me,

I am using telerik radgrid in visual studio 2008.i have a telerik radgrid with detailtable can anyone explain how to export all detailsview and mastertable view field.Then i have imagebutton field so i need to avoid that


regards
suresh.S
Pavlina
Telerik team
 answered on 27 Oct 2010
3 answers
522 views
Hi, I am replacing an existing control suite with Telerik and am trying to use the tabstrip to control navigation, with each tab pointing to a .Net page that isn't suitable to be put into a multipage due to complexity.

I found a suggestion in the forums to use an iframe which I have done but I find that when the page is refreshed the selected tab goes back to the first tab and trying to interrogate the iframe src using jquery just seems to bring back the intiailly set src.

Is there a way to persist the selected tab on page refresh?

My code is below.

Thanks, Matt

<telerik:RadTabStrip ID="rtsMainTabs" runat="server" Width="990px"
    CssClass="crmMainTabs" Skin="Simple" SelectedIndex="2">
    <Tabs>                      
        <telerik:RadTab
            NavigateUrl="home.aspx"
            Text="Front Page"
            Target="IFContent">
        </telerik:RadTab>
        <telerik:RadTab
            NavigateUrl="Page2.aspx"
            Text="Page2"
            Target="IFContent">
        </telerik:RadTab>
        <telerik:RadTab
            NavigateUrl="Page3.aspx"
            Text="Page3"
            Target="IFContent">
        </telerik:RadTab>
        <telerik:RadTab
            NavigateUrl="Page4.aspx"
            Text="Page4"
            Target="IFContent">
        </telerik:RadTab>
    </Tabs>
</telerik:RadTabStrip>
<iframe name="IFContent" id="IFContent" style="width:990px; height:720px;"
src="home.aspx"></iframe>
Cori
Top achievements
Rank 2
 answered on 27 Oct 2010
1 answer
103 views

Hi,

I have used Telerik products specially Radgrid, RadAjaxManager and RadWindow in my project extensively. After everything has started working fine, we are trying to fine tune the project to make it faster as client has started complaining about the speed of certain pages or context menu items.

For a RadGrid, Ihave used RadMenu as contextmenu. For the context menus for which there is no postback, everything works fine. For the context menu with postback, when the server side code is run to check some values in the database and open a new page in a RadWindow depending on the values, it takes a very long time. The reason I figured is – even for an Ajax call, the data submitted to server is the whole grid data and then bring back the whole data. My initial ajaxsetting as shown below was bringing back the whole data and reloading the grid, so it was taking even longer. Now I am not reloading the grid, so it is working a little faster.

 

<telerik:AjaxSetting AjaxControlID="RadMenu1">

            <UpdatedControls>

                <telerik:AjaxUpdatedControl ControlID="Label1"/>

            </UpdatedControls>

        </telerik:AjaxSetting>

Previuosly my ajax setting was

 

<telerik:AjaxSetting AjaxControlID="RadMenu1">

            <UpdatedControls>

                <telerik:AjaxUpdatedControl ControlID="RadGrid1"/>

            </UpdatedControls>

        </telerik:AjaxSetting>

 

When RadGRid1 was the updated control for RadMenu, page was even slower.

Can you please suggest  what can I do to improve the performance?

 

Thanks

 

Pavlina
Telerik team
 answered on 27 Oct 2010
1 answer
255 views

Hi,
I am loading Telerik grid based on search parameters, and when data is loading from database,i would like to display Hourglass rotating, but i could not able to get it. since i am getting default loading rotating only.

ex:-

<

 

telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" BackColor="AliceBlue"

 

 

 

 

 

Transparency="30">

 

 

 

 

 

<img alt="Loading..." src='<%= RadAjaxLoadingPanel.GetWebResourceUrl(Page, "Telerik.Web.UI.Skins.Default.Ajax.loading.gif") %>'

 

 

 

 

 

style="border: 0;" />

 

 

 

 

 

</telerik:RadAjaxLoadingPanel>

 

 

 

do let me know, if i need to change to loading.gif to some other file? if so please let me know the path.

Thanks in advance.

Cori
Top achievements
Rank 2
 answered on 27 Oct 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?