Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
61 views
Is there any way to make the Client API work more like jQuery.

Instead of use:

$find("<%= TXT.ClientID %>")
 
Use:

$(".TXT")
Iana Tsolova
Telerik team
 answered on 19 Jun 2012
1 answer
120 views
I have successfully implemented a Rad Splitter oriented horizontally, to afix a navigation bar to the top of the page, and a second pane, below the splitter bar, that displays the main content. In this pane, is a MSAJAX control toolkit TabContainer control, the tab with index 0 displays fine. But, when I click tab index 1 or 2, NOTHING DISPLAYS, just blank white space. I tried setting the RegisterWithScriptManager property to true of the RadSlitter control, but it DID NOT fix it. Does anyone know how to fix this?
Dobromir
Telerik team
 answered on 19 Jun 2012
1 answer
99 views
We use telerik for our ASP.Net app, but we use a different suite, DevExpress for our Winform development.

They are touting numerous enhancements to their ASP.Net controls to make them more touch and mobile friendly:
http://www.devexpress.com/Subscriptions/DXperience/DXv2/index.xml?page=48

They don't mention at all what technology they are using (html5, jquery, etc.)

Now I know telerik is pushing the KendoUI for mobile/touch apps, but my question is:

Will there be any enhancements to the existing ASP.Net AJAX suite to better support touch/mobile?

For example, we use all the telerik themes in our app, and none of them work really well on an iPad.
The main issue being the hit area for elements are too small,
trying to activate a RadMenu, move a RadWindow, expand a RadCombo...all require your touch be really precise or you never get it.

The Metro theme is a little better, but not much.  It looks wonderful...it just still has the same difficulties with touch precision.

All of our clients are asking for better mobile compatibility.  And while I wish my application was in a better state so that I could use the KendoUI, it's too large and old to do quickly.

But if your ASP.Net AJAX suite better supported touch like DevExpress, I think it would help a lot of your users like myself bridge the gap between now and implementation of KendoUI.

I'm going to give their demos a workout tonight and if they do indeed work better on my test bed of tablets...I think you guys need do something to keep up!  You always have! 

Thanks

Iana Tsolova
Telerik team
 answered on 19 Jun 2012
1 answer
110 views
Hy,

I am specifying my querystring as navigateurl of a window and when retreiving it the parameters are missing.
My code is
Dim url As String = "../ServiceCenter/JobEstimation.aspx?EstNo=" & EstNo & "&Location" & EstLocation & "&Year" & EstYear
rwCustConfirmation.NavigateUrl = url

and when retreiving it i get only Estno=2&Location..
help me
Kevin
Top achievements
Rank 2
 answered on 19 Jun 2012
1 answer
95 views
I am using the Q2 2012 version of ajax, I have a grid on an aspx page and in that grid I have a template column for a custom button and a custom editlink functionality.  The custom button and link open a radwindow and they work fine.  However I am also allowing paging of the grid, and this strips the custom functions because i have it in the radgrid_created event wrapped in an !ispostback if statement.  I have tried the pageindexchanged event up it is after the create event.  Any guidance is appreciated on how to tell the created event that while it is a postback it is a also paging and allow the buttons to create in this instance. thanks.

//here is the markup for the custom columns
                <telerik:GridTemplateColumn FilterControlAltText="Filter TemplateColumn column" UniqueName="addSubscriber"
                                AllowFiltering="false">
                                <ItemTemplate>
                                    <asp:Button ID="Button7" runat="server" Text="Add Subscribers" /></ItemTemplate>
                            </telerik:GridTemplateColumn>
       <telerik:GridTemplateColumn UniqueName="TemplateEditColumn" AllowFiltering="false">
                                <ItemTemplate>
                                    <asp:HyperLink ID="EditLink" runat="server" Text="Edit"></asp:HyperLink></ItemTemplate>
                            </telerik:GridTemplateColumn>
 
 
//and here is the code behind
   if (!IsPostBack)
        {
            if (e.Item is GridDataItem)
            {
 
                HyperLink editLink = (HyperLink)e.Item.FindControl("EditLink");
                editLink.Attributes["href"] = "#";
                editLink.Attributes["onclick"] = String.Format("return ShowAlertEditForm('{0}','{1}');", e.Item.OwnerTableView.DataKeyValues[e.Item.ItemIndex]["ID"], e.Item.ItemIndex);
            }
            if (e.Item is GridDataItem)
            {
                Button editLink = (Button)e.Item.FindControl("Button7");
                // OnClientClick=" return ShowAddSubscriberForm();"
                editLink.Attributes.Add("onclick", String.Format("return ShowAddSubscriberForm('{0}','{1}');", e.Item.OwnerTableView.DataKeyValues[e.Item.ItemIndex]["ID"], e.Item.ItemIndex));
 
            }
        }
regina
Top achievements
Rank 1
 answered on 19 Jun 2012
0 answers
70 views
Hy,

I am using a radnumerictextbox as readonly,while assigning  value to the control it is displayed twice.

Hlp me
Gopakumar
Top achievements
Rank 1
 asked on 19 Jun 2012
0 answers
112 views
Hi,
I need to highlight only the previous Selected Dates in disabled RadCalendar. Please provide solution.

Regards,
Aditya
Aditya
Top achievements
Rank 1
 asked on 19 Jun 2012
8 answers
150 views
Just upgraded my code to the lastest version and I have a detail table with the following code:
<DetailTables>
<telerik:GridTableView runat="server" DataKeyNames="JobID,JobCompleted,OrderCompleted,JobCancelled,Status" DataSourceID="dsJobs" Name="JobDetail" AllowFilteringByColumn="False" ShowHeadersWhenNoRecords="False" AllowSorting="false" ExpandCollapseColumn-Display="false">

It now gives me an error of System.NullReferenceException: Object reference not set to an instance of an object.

I tracked it down to the property of:

ExpandCollapseColumn-Display="false"

If I remove this then it works (although the expand/collapse column appears).  If I set it to ExpandCollapseColumn-Visible="false" it errors again.  It does work on the mastertableview.  I know I can hide it through CSS (but I have a mix-and-match on the same page) or codebehind, but I really don't want to update the ton of pages that this is used on.  I would rather wait for an update if this is a verified error.
Tsvetoslav
Telerik team
 answered on 19 Jun 2012
0 answers
112 views
Hi,

We have enable IIS dynamic compression on our Sitefinity website. We have a separate asp page using a RadlistView control.

It seems that dynamic compression block the page (postbaclk is not taken in consideration / page refresh )

What can we do to enable this compression ?

Thanks

Elsa
Elsane
Top achievements
Rank 1
 asked on 19 Jun 2012
1 answer
143 views
Hi. I'm using the XmtHttpPanel for the first time. At the moment I have the XmlHttpPanel within a <div id="panelDiv" runat="server">

At the moment I am using callback similar to the first look demo on the Telerik website (ie javascript to set the XmlHttpPanel.value and that then calling code behind).

If I set the panelDiv.visible = false; nothing seems to happen. If I set panel.visible = false; the panel disappears. However, if I then make another click that results in panel.visible=true; I get an error:

    Server Error in '/prototype' Application. 
    -------------------------------------------------------------------------------- 
     Script control 'Async_highlights' is not a registered script control. Script controls must be registered using RegisterScriptControl()
     before calling RegisterScriptDescriptors(). 
    Parameter name: scriptControl


I also have a button separate to the XmlHttlpPanel that I want to also use to switch the panel's visibility. I found problem using .visible but it seems to work using the display attribute.

Can you give any advice about the best way to hide/show an XmlHttpPanel dynamically (I don't care about the content because if the panel is subsequently revealed again the content will be updated).


Slav
Telerik team
 answered on 19 Jun 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?