Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
146 views
Hi All,


My problem is when I open grid in edit mode ,and when I moved to different tab my edit form or edit pop up remains open,I want to close that and also I want to show message before leaving,please help me out
Daniel
Telerik team
 answered on 31 Oct 2008
2 answers
162 views

Can you help set up nice looking grids like those in the Telerik demos by sharing image source files?
Specifically many of the grids use an image as background.  Often it is an image having rounded corners
and the image allows a title on top of the grid. The image extends just a little on the sides and bottom of the grid.
Previously I adapted an example that used this file as background: Images/bgMedBlue.jpg.
I don't remember the name of the demo but I referenced it in a post to the forum for radgrid.
The demo used the file as in the following example:

 <div style="background: url(Images/bgMedBlue.jpg) no-repeat; padding: 7px 5px; width: 742px;">
 <div style="font-size: 13px; font-weight: bold; color: #15428b; padding: 4px 30px;">  Here is the title of the grid </div>
 <rad:RadGrid ID="RadGrid1" Skin="WebBlue"  ....

Specific questions:

1. Is there a way to search the foums for posts by a specific user?
2. Can I get the source files for bgMedBlue.jpg and other graphic files used for grid background in the Telerik demos for radgrid?
By "source file" I mean a vector graphic file that allows resizing without losing image quality.
I need a file for Microsoft Expression Design or a file type I can import to that package.
If for some reason you cannot provide them, can you recommend any other source, free or paid, for files of this type.
(I believe providing these files could help many Telerik users and make it faster for them to develop applications similar to your demos.)

Dimo
Telerik team
 answered on 31 Oct 2008
3 answers
116 views
Sir
hw to set dockzone.style dynamically.
I need dockzones float=left
Thanks...
Priya
Top achievements
Rank 1
 answered on 31 Oct 2008
3 answers
118 views
I'm wondering if there is a way to control where on a bar chart the y data point is displayed.  For most bars, the value is displayed just past the end of the bar, but here and there the value displays within the bar.  Also, every now and then, a value is displayed partially below the bar.  What properties are available to control where the data point displays?
Ves
Telerik team
 answered on 31 Oct 2008
1 answer
144 views
How do I remove the week column from showing on the left of the calendars?

Thanks.
Moon
Shinu
Top achievements
Rank 2
 answered on 31 Oct 2008
2 answers
113 views
hello,
   Previously we were using radcontrols version 2008.2.723.20
and Combo Load on Demand was working fine and it was not taking much time retreiving the data from sql.
But now we have installed RadControl of version 2008.2.826.20 and Load On Demand is too much slow.

it is fine on local system but when we deploy on the server then its speed is very slow.

Is there any problem in this version.

Please help us in this regard.

Thanks
altaf
Top achievements
Rank 1
 answered on 31 Oct 2008
5 answers
734 views
The requirement is simple. But...
I want to mark the checkboxes which exist as a template column in a grid on other button's click event.
Shinu
Top achievements
Rank 2
 answered on 31 Oct 2008
1 answer
139 views
Hello,
 
 I'm having some difficulties implemention a  grid regroup based on user's selection  in a dropdown control.
 Basically, I'll like my users to select "group by Agency" or "by client"  based on the selection the make in a dropdown box.

 in my dropdown event handler, I'll like to change the grouping. the default group is by Agency.
 
  below is my grid structure.

/*************************************/

<telerik:radgrid id="gridWorks"
DataSourceID="getWorks"
runat="server"
ShowStatusBar="true"              
gridlines="Horizontal"
skin="WebBlue"
AllowSorting="true"
ShowGroupPanel="false"
AutoGenerateColumns="false"                        
OnUpdateCommand="gridWorks_UpdateCommand"
OnDeleteCommand="gridWorks_DeleteCommand"
OnInsertCommand="gridWorks_InsertCommand"
PageSize="50" AllowAutomaticDeletes="True" OnItemCommand="gridWorks_ItemCommand" >

<MasterTableView GroupLoadMode="Client"  CommandItemDisplay="TopAndBottom" DataKeyNames="workID,Title" AllowPaging="True" AllowSorting="False" DataSourceID="getWorks">

<Columns>
<telerik:GridBoundColumn DataField="Title" HeaderText="Title" ReadOnly="True" SortExpression="Agency" UniqueName="Title"/>
<telerik:GridBoundColumn DataField="Client" HeaderText="Client" ReadOnly="True" SortExpression="client" UniqueName="Client"/>
<telerik:GridBoundColumn DataField="SiteStatus" HeaderText="Site Status" ReadOnly="True"  UniqueName="SiteStatus"/>
<telerik:GridButtonColumn ButtonType="ImageButton" CommandName="Update" ImageUrl="../Images/ICEdit.gif" HeaderText="Edit" UniqueName="column" />
<telerik:GridButtonColumn ConfirmText="Are you sure you want to delete this Work?\n Items are none recoverable once deleted!"  HeaderText="Delete" CommandName="Delete" ButtonType="ImageButton" ImageUrl="../Images/ICTrash.gif" Text="Delete" UniqueName="Delete"/>
<telerik:GridBoundColumn DataField="Modified" HeaderText="Last Modified" ReadOnly="True"  UniqueName="Last Modified"/>

</Columns>

<RowIndicatorColumn>
<HeaderStyle Width="20px"></HeaderStyle>
</RowIndicatorColumn>

<GroupByExpressions>
<telerik:GridGroupByExpression>
<SelectFields>
<telerik:GridGroupByField FieldName="Agency" FieldAlias="Agency" />

</SelectFields>
<GroupByFields>
<telerik:GridGroupByField  FieldName="Agency" FieldAlias="Agency"/>
</GroupByFields>

</telerik:GridGroupByExpression>
</GroupByExpressions>


/********************/

 your help is much appreciated.
-roland
Shinu
Top achievements
Rank 2
 answered on 31 Oct 2008
15 answers
315 views
Hi,

with only one gridbutton I don't have problem.
I use event:
Protected Sub RadGrid1_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles RadGrid1.SelectedIndexChanged

But with something like this (2 or moore buttons):

<radG:GridButtonColumn CommandName="Diana" HeaderText="Dettagli" Text="[Diana]" UniqueName="Diana">
</radG:GridButtonColumn>
<radG:GridButtonColumn CommandName="Sara" Text="[Sara]" UniqueName="Sara">
</radG:GridButtonColumn>

on

Protected Sub RadGrid1_ItemCommand(ByVal source As Object, ByVal e As Telerik.WebControls.GridCommandEventArgs) Handles RadGrid1.ItemCommand
        Dim item As GridDataItem

            MyCmd = e.CommandName

            Select Case MyCmd
                Case "Diana"
                Case "Sara"
...
works
but
            item = RadGrid1.SelectedItems.Item(0)
            myKey = item("FId").Text

say me that I don't have selected item.

someone can help me?
Thanks

RRE


Jim
Top achievements
Rank 1
 answered on 31 Oct 2008
4 answers
141 views
I think I'm missing something that should be very simple....

How can I make a particular resource the default if none is chosen?

I'd be happy with the blank/none option being removed and a default/first resource being shown or in the code (AppointmentCreated I assume) the resource is assigned what I want the default resource to be if none were chosen.
Scott
Top achievements
Rank 1
 answered on 30 Oct 2008
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?