Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
87 views

Is it possible, from the client side, to call a method of the RadFileExplorer's customfilecontentprovider?

I want to check for existence of a file, to warn the user before he overwrites an existing file.

Suggestions?

Fiko
Telerik team
 answered on 03 Jul 2009
7 answers
485 views
Why is it so difficult to alter the apperance of a combobox control when it's disabled?  I've tried every example I found here in the forum and my combobox looks the same every time.  I'm using the Vista skin, and I'm trying to get rid of the controls borders.  This shouldn't be this hard.
Simon
Telerik team
 answered on 03 Jul 2009
1 answer
81 views
In my Grid, There is a column "status" and a command link button column "delete"
If "Status" = 0, I set the command button column item to Empty string "" in the ItemDataBound events.
This work properly and pretty good.

But when I edit the row in editform mode, the "delete" command APPEAR!! ... ...
How to handle this case?

Thanks.
Shinu
Top achievements
Rank 2
 answered on 03 Jul 2009
0 answers
144 views
Your example:

http://www.telerik.com/community/code-library/aspnet-ajax/combobox/using-checkboxes-for-multi-item-selection.aspx

In firefox for windows:
Mozilla/5.0 (Windows; U; Windows NT 5.1; it; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 (.NET CLR 3.5.30729)

Work only first time when i click it. If i wans see another time the list is not possible.
emidio rana
Top achievements
Rank 1
 asked on 03 Jul 2009
2 answers
133 views
I am putting together a simple interface to allow Membership (Roles and Users) data to be managed.

I have an ODS which hooks into the GetAllRoles() method of the Roles provider which simply returns string [] containing each rolename.

I want to then allow roles to be deleted from the system using the automatic capabilities of the radgrid but cannot seem to get this to work. AFAICT there is no DayaKeyNames value to use for the string array which, if I autogenerate the columns at runtime is simply called "Item". I've created teh columns manually, a GridButtonColumn for the delete and a Rolename column. I have the DeleteMethod and DeleteParameters specified correctly in the ODS but nothing I do seems to get the value of the rolename passed to the ODS when I hit Delete. What do I need to do to get this value communicated properly? ALternatively what do I need to do to manually process the delete?

M
Mark H
Top achievements
Rank 1
 answered on 03 Jul 2009
1 answer
122 views
If the filename specified to ExportSettings.Filename contains japanese characters, the Save As... dialog will contain garbage characters for the filename. The issue is limited to IE. I believe the only way to fix this is an update from Telerik since the fix requires changing the code that sets the filename in the header...

The filename when appended as a header needs to be encoded with HttpUtility.UrlEncode. Something like this... 

 

// If it's the IE browser, we need to encode the filename

 

if

 

(HttpContext.Current.Request.UserAgent.IndexOf("; MSIE ") > 0)

 

{

   response.AddHeader(

"Content-Disposition", "attachment; filename=" + HttpUtility.UrlEncode(file.Name));

 

}

 

else

 

{

 

   // if it's anything else, the browser can handle the extended filename

 

   response.AddHeader(

"Content-Disposition", "attachment; filename=" + file.Name);

 

}


If someone from Telerik could confirm that this is an actual bug and that there isn't another work around, that'd be great.
Daniel
Telerik team
 answered on 03 Jul 2009
1 answer
100 views
Hi,

I got complain from user that he has some experience difficulties to load the chart.  Some internet connections are fine but other are not, it takes huge of time to load the chart and got error time out.  He use the same laptop.   May I know the security setting might cause the issue to load the chart?  Thanks in advance.

Regards,

Duy
Ves
Telerik team
 answered on 03 Jul 2009
2 answers
122 views
How to Preserve the scroll position ?

For example after i click on a expansion i dont wan the scroll to jump to the top but stay on the place i expand

Kindly advise
Noob2008 Noob2008
Top achievements
Rank 1
 answered on 03 Jul 2009
3 answers
104 views
hi I have a databound RadGrid, I'd like to allow different options items for different types of columns. e.g. for string columns i only want to have "NoFilter" and "Contains" options, for number columns I only want to have "NoFilter", "GreaterThan" and "LessThan" options. I tried to apply the method (see below) under radgrid1_Init() and radgrid1_databound(), no luck with either way. please hlep

foreach (GridColumn gc in radgrid1.MasterTableView.RenderColumns)
            {
if (gc.DataType.ToString() == "string")
            {
                GridFilterMenu menu = rgQualificationList.FilterMenu;
                int i = 0;
                while (i < menu.Items.Count)
                {
                    if (menu.Items[i].Text == "NoFilter" ||
                        menu.Items[i].Text == "Contains" ||
                        menu.Items[i].Text == "EqualTo" ||
                        menu.Items[i].Text == "StartsWith")
                    {
                        i++;
                    }
                    else
                    {
                        menu.Items.RemoveAt(i);
                    }
                }
            }

if (gc.DataType.ToString() == "DateTime")
            {
................
............
Sebastian
Telerik team
 answered on 03 Jul 2009
1 answer
173 views
Hi,

I want to implement on my application something like microsoft office (with the little paperclip saying things)

So i met two problems  :

First, i want to show the tool tip on an image, and always the same image on the page load, or on the event of my choice.

Secondly, i want this tooltip, to hide after 10secs whatever the user is doing. (I dont want to check the mouse position to determinate if i have to show or hide the tooltip)
Shinu
Top achievements
Rank 2
 answered on 03 Jul 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
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
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?