Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
133 views
Hi,

Is there any way to change the opacity of the background shadow on a rad alert?

Basically I want to use it as a screen sheild, to mostly (but not completely) hide the contents of the window behind. Until the user clicks the prompt when they return to their desk.

I intend to use a client side popup for this.

Is it possible to change this setting?

Cheers

Tox
Toxic
Top achievements
Rank 1
 answered on 13 Jul 2011
6 answers
112 views
I have a stupid problem with RedWindow. In my App I open a RedWindow to show som einformation to users. And users Can change the and save it after that, or just click cancel button. When users click save button, I want to reload parent page. But if they click Cancel button, I don't want to refreshing parent.

This is my code:
In parent I have : 

<telerik:RadWindowManager ID="rwmMain" runat="server" EnableShadow="true">
           <Windows>
                <telerik:RadWindow ID="DataEntry" runat="server" Title="Data Entry"                    
                    DestroyOnClose="true" OnClientClose="closeModal" ReloadOnShow="true" Width="870" />
            </Windows>
 </telerik:RadWindowManager>

And This is my "closeModal" method:
function closeModal(sender, eventArgs) {
    var arg = eventArgs.get_argument();
   if (arg != 'close')
  {
            window.location.reload(true);
        }
}

Now, if I just open redwindow and click save button parent will be refresh, and for cancel button, the parent doesn't refresh. but the problem happens when I open redwindow and click on Cancel button, and after that opening redwindow again and this time click save button, the parent doesn't refresh. 
Azadeh
Top achievements
Rank 1
 answered on 13 Jul 2011
3 answers
225 views

 

Hi All,

First post as I've struggled to figure this one out, new to Telerik and .Net so possibly a bad combination!

I've taken the following snippet from the demo for using radspell with radgrid, but the problem I appear to have is that I also want to spellcheck the edit control of gridtemplatecolumns as well as gridboundcolumns. I'm trying to figure out how to just access the edit section of the gridtemplatecolumn (my attempt is currently commented out and marked PROBLEM BIT) the trouble is that whilst it works to a degree it appears to be duplicating a whole load of information when the spell checker pops up (there also appears to be a lot of white space in 'not in dictionary' area.

In short, it's misbehaving but I'm sure it must be something obvious I'm doing.

please help! I've been on this for 10 hours straight (as a learner!) and I'm fed up with it now!

Thanks in advance,

Dave


 

 

foreach (GridColumn column in editedItem.OwnerTableView.RenderColumns)

 

{

 

if (column is IGridEditableColumn && column.IsEditable)

 

{

 

IGridColumnEditor editor = editMan.GetColumnEditor(column as IGridEditableColumn);

 

 

if (editor is GridTextBoxColumnEditor)

 

{

 

string editorID = (editor as GridTextBoxColumnEditor).TextBoxControl.ClientID;

 

controlsToCheck.Push(editorID);

index++;

}

 

/*
PROBLEM BIT
if (editor is GridTemplateColumnEditor)

 

{

string editorID = (editor as GridTemplateColumnEditor).ContainerControl.ClientID;

controlsToCheck.Push(editorID);

index++;

}*/

 

 

 

}

 

}

RadSpell1.ControlsToCheck =

new string[index];

 

 

while (controlsToCheck.Count > 0)

 

{

RadSpell1.ControlsToCheck.SetValue(controlsToCheck.Pop(), controlsToCheck.Count);

}

RadSpell1.IsClientID =

true;

 

 


 

 

<telerik:GridTemplateColumn HeaderText="KSP/Benefit 1" UniqueName="cnpb_benefit1" DataField="cnpb_benefit1" Visible="False" FilterControlAltText="Filter cnpb_benefit1 column">

 

 

 

 

 

<ItemTemplate>

 

 

 

 

 

<asp:Label ID="lblcnpb_benefit1" runat="server" Text='<%# TrimDescription(Eval("cnpb_benefit1") as string) %>' />

 

 

 

 

 

</ItemTemplate>

 

 

 

 

 

<EditItemTemplate>

 

 

 

 

 

<telerik:RadTextBox ID="txbcnpb_benefit1" Width="450px" runat="server" TextMode="MultiLine"

 

 

 

 

 

Text='<%# Bind("cnpb_benefit1") %>' Height="90px" MaxLength="500" />

 

 

 

 

 

</EditItemTemplate>

 

 

 

 

 

<ItemStyle VerticalAlign="Top" />

 

 

 

 

 

</telerik:GridTemplateColumn>

 

Daniel
Telerik team
 answered on 13 Jul 2011
8 answers
556 views
We would like to utilize some functionality of the latest ASP.NET Ajax Library (specifically, Client Templates), but are running into problems when including RadControls (2009 Q3 release) on the same page.

It seems that the RadScriptManager outputs an earlier version of MicrosoftAjax.js on the page when necessary. This is understandable, as I'm sure many of your controls utilize its functionality. However, when including the latest release of the ASP.NET Ajax Library, there are major errors that occur on the page (certain functions/objects undefined, null references, etc.). My question is: is there a supported way (or even ANY way) to use a later version of the ASP.NET Ajax Library in conjunction with Telerik controls on a single page?
Simon
Telerik team
 answered on 13 Jul 2011
4 answers
100 views
Hi,

I have a issue in applying styles in chrome where the styles are changed to lowercase and I have the styles in mixed cases. I found a thread where the same issue is reported and they have suggested to change the render mode to "DIV" . But we were not able to change to "DIV" because of our CMS behavour as we dont want the content to render parent page styles. I was trying to change the "selectorText" value but there is no setter for this I guess and I am getting error saying "no Implementation". Can some one help with any other options?
Link for the other thread with the same issue.
http://www.telerik.com/community/forums/aspnet-ajax/editor/css-class-names-in-chrome.aspx


Thanks,
Akila.

Akila Kumarasamy
Top achievements
Rank 1
 answered on 13 Jul 2011
1 answer
189 views
Hi,

I'm trying to set up the RadGrid for self-referencing using HierarchyLoadMode = Client. I'm seeing a lot of "No Child Records Found" in my grid and read that I need to hide them during PreRenderComplete. However, my grid is inside a usercontrol so the PreRenderComplete event doesn't fire. Under regular circumstances I should to fire the method in the Page's PreRenderComplete, but this usercontrol is being wrapped into a sharepoint webpart which I don't have PreRenderComplete event for.

Is there any other way to make it possible to hide the "No Child Records Found" nested table views? I can't hide it during PreRender because it is Client Load Mode.

Thanks,
Gilbert
Genti
Telerik team
 answered on 13 Jul 2011
3 answers
156 views
I have a RadEditor in a Div on a page. I use JQuery to clone that Div and try to use it multiple times on the page. But JQuery Clone command doesn't seem to work on RadEditor. The new RadEditor object does not render correctly.

I wanted to know, if the RadEditor supports JQuery. And if it does, then is there any sample which I can refer to.
If the radEditor does not support JQuery, then is there any way to add new RadEditors on the page using javascript.

Thanks
Saurabh.
Rumen
Telerik team
 answered on 13 Jul 2011
2 answers
261 views
I have a radgrid with a column called 'Note'. I want to display a small note icon if the column has data in it. Then when the user mouseovers the icon, it displays the contents from the 'Note' column.

Can this be done?
Mira
Telerik team
 answered on 13 Jul 2011
7 answers
629 views
I have a multi-line RadTextBox in an EditItemTemplate in a RadGrid in a web application.  When the user presses shift-enter, the focus goes to the control in the previous column.  I would like it to behave as if it weren't in a RadGrid: to insert a carriage return and go to the next line in the RadTextBox.  How do I do this?
Pavlina
Telerik team
 answered on 13 Jul 2011
2 answers
799 views
Hi,

I was wondering if it is to possible to make some "advance" formatting on a GridBoundColumn. In fact, I want to show a number with always and only one digit (ex : 197,1 - 197,0 - 197,8). The best I come to is to show a digit if this digit isn't a 0 (so, it look like 197,1 - 197 - 197,8). I try with a GridNumericColumn,but no luck. So, here is my code 

<telerik:GridBoundColumn DataField="test" HeaderText="test" UniqueName="test"
DataFormatString="{0:$###.#}" />

Is anyone may help me please ?

Thank you,
David

PS: I'm now wondering if it is a better solution if I just override the DataFormatString propriety, cause I'm now using a override GridTemplateColumn, so I will just have to plug the override propriety in. So, if anyone know how to correctly override DataFormatString, please let's me know how.
David
Top achievements
Rank 1
 answered on 13 Jul 2011
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?