Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
72 views
We make a commercial asp.net app and try to support the widest range of browsers possible.

We just switched from the asp.net components to the asp.net AJAX components in a new release we're working on and we've been testing Opera 9.63 latest version and running into many weirdnesses we didn't see before with the last generation Telerik components. 

Telerik seems to have no solution for some of them, workarounds for others.  

Chrome and IE and FireFox aren't having these same problems, I'm wondering if we should just say Opera is unsupported and call it a day on that since it appears that Telerik is unable to support some of their stuff on Opera and don't seem to test other stuff at all on Opera because some of the issues were pretty obvious right off the bat (transparent background in context menus etc).

Do you support Opera or just call it unsupported?
Sebastian
Telerik team
 answered on 22 Jan 2009
1 answer
116 views
Hi,

I have 3 tabs in a page. Each tab page has a multiple asp.net controls with required field validators. The problem is -
Although I have filled all required fields in tab1 & clicked second tab, it does not allow me to move to second tab page or third tab page. I found the issue - because second tab page do have controls with validators. 

Now could you please someone hint me how can I move from one tab to another eventhough the tab page you are moving does have validators on it. Basically, the idea is  once all required fields are entered it should allow to move to next tab page and so on. Remember I do have button only at the last tab page. Validation needs to be triggered only on clicking the tab!

Thanks.

Milan G
Paul
Telerik team
 answered on 22 Jan 2009
1 answer
157 views
I have registered the RadUploadProgressHandler in my web.config:

<

 

add verb="*" path="Telerik.RadUploadProgressHandler.aspx" type="Telerik.WebControls.RadUploadProgressHandler, RadUpload.Net2" />

 

 

 

 

I get this error:

>>Could not load file or assembly 'RadUpload.Net2' or one of its dependencies. The system cannot find the file specified.

I don't know if it's because I'm using 3.5 framework or missing a file. Has the method of registering changed for 3.5?

I'm using 3.5 framework, and this page doesn't have instructions for it:
http://www.telerik.com/help/aspnet/upload/raduploadprogresshandler.html

I am using version 2008, 3, 1314, 35.

thanks!

Moon

Atanas Korchev
Telerik team
 answered on 22 Jan 2009
2 answers
134 views
How can I recreate this example (http://demos.telerik.com/aspnet-ajax/Menu/Examples/MultiColumnMenu/DefaultCS.aspx) while using a sitemap datasource?
Atanas Korchev
Telerik team
 answered on 22 Jan 2009
1 answer
106 views
Hi Telerik,
I have a RadGrid with EditFormType="WebUserControl" .
In the webusercontrol, there is a button clicking which will update a textbox's text.

The problem is that when I click the button in the editform, it will reload the entire grid each time.
But the only important behavior I want is to make it no reloading the entire grid when clicking the button.
To reach the goad, I tried to add an AjaxManagerProxy into the web user control.
The code is as below:

<%

--There is code fragment in web user control EditForm.ascx--%>
<

telerik:RadAjaxManagerProxy ID="RadAjaxManagerProxy1" runat="server">  

    <AjaxSettings> 
        <telerik:AjaxSetting AjaxControlID="btnSubmit">  
            <UpdatedControls> 
                <telerik:AjaxUpdatedControl ControlID="textCompanyName" /> 
                <telerik:AjaxUpdatedControl ControlID="textProjectName" /> 
            </UpdatedControls> 
        </telerik:AjaxSetting> 
    </AjaxSettings> 
</telerik:RadAjaxManagerProxy> 

However, the RadAjaxManagerProxy seems not to work... When I click the button, it still reload the whold grid.

What should I do in this case?
Yavor
Telerik team
 answered on 22 Jan 2009
1 answer
127 views

Hi,
        I have some problem with Telerik Grid Control Filtering functionality.

        I have given XMLDatasource but i was trying i all the ways but no column is filtering.

        Please anyone help me out.

         For your reference please find the following code.


 

 

<asp:ScriptManager ID="ScriptManager1" runat="server" />

 

 

 

 

 

<telerik:RadGrid ID="RadGrid1" AllowFilteringByColumn="true" runat="server" OnNeedDataSource="RadGrid1_NeedDataSource" Skin="Office2007"

 

 

 

 

 

OnColumnCreated="RadGrid1_ColumnCreated" OnItemCreated="RadGrid1_ItemCreated">

 

 

 

 

 

</telerik:RadGrid>

 

 

<asp:XmlDataSource ID="XmlDataSource1" runat="server" ></asp:XmlDataSource>

 

 

 


 

 

protected void RadGrid1_NeedDataSource(object source, GridNeedDataSourceEventArgs e)

 

{

XmlDataSource1.DataFile =

"~/Resources/SbtInternalDir.xml";

 

RadGrid1.DataSource = XmlDataSource1;

}

 


 

 

protected void RadGrid1_ColumnCreated(object sender, GridColumnCreatedEventArgs e)

 

{

 

if (e.Column.IsBoundToFieldName("ID"))

 

{

e.Column.CurrentFilterFunction =

GridKnownFunction.EqualTo;

 

e.Column.AutoPostBackOnFilter =

true;

 

}

 

if (e.Column.IsBoundToFieldName("Name"))

 

{

e.Column.CurrentFilterFunction =

GridKnownFunction.Contains;

 

e.Column.AutoPostBackOnFilter =

true;

 

}

}

 

protected void RadGrid1_ItemCreated(object sender, GridItemEventArgs e)

 

{

 

if (e.Item is GridFilteringItem)

 

{

 

foreach (GridColumn column in e.Item.OwnerTableView.RenderColumns)

 

{

 

Control filterImage = e.Item.FindControl(String.Format("Filter_{0}", column.UniqueName));

 

 

if (filterImage != null)

 

{

filterImage.Visible =

false;

 

}

}

}

}

Looking forward for quick reply from Professional Telerik Team.

With Regards,

Mohammed

Yavor
Telerik team
 answered on 22 Jan 2009
1 answer
118 views
Hi

I am using combobox in edit mode for user selection. The combobox contails Rad tree Itemtemplate. The problem i am facing is i want to write script to show combo box text as the selected items from the tree inside it.... but cant able to figure out how to find combo box from Grid in Javascript


Thanks
Avi
Shinu
Top achievements
Rank 2
 answered on 22 Jan 2009
1 answer
198 views
Hi,

Please help me..
I have created one rad window dynamically. then i need to set the value of Navigate Property of this window from the javascript. but i could not set the Navigate Property value from javscript.
regard
Sathies
Shinu
Top achievements
Rank 2
 answered on 22 Jan 2009
3 answers
128 views
I am getting error on Insert/Update in Radgrid.

Validators are does not works or
only works after post back in grid with editmode inplace or editforms.

the page works fine on local PC(windows XP) but after uploading on server (Windows 2003) it fires validators only after once page is postback.
Paresh
Top achievements
Rank 1
 answered on 22 Jan 2009
1 answer
152 views
Can you suggest the best approach to filtering a grid's data in code rather than by using the built-in filtering functionality?

Once the grid has been rendered, in the click event of a 'filter' button I've tried applying a FilterExpression to my DataTable's DefaultView and then assigning that to the grid's DataSource property, but this is causing me problems in PreRender when I try to inspect each row to determine if the row should be placed into edit mode as although I have filtered my DataTable's DefaultView from 10 rows down to 2 rows, in the grid's PreRender event the grid's Items collection still contains 10 items.

What's the recommended approach to manually filtering the grid's data, bearing in mind that I need to access the data in the grid's PreRender event to determine if a filtered row should be in edit mode?
Shinu
Top achievements
Rank 2
 answered on 22 Jan 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?