Telerik Forums
Community Forums Forum
0 answers
98 views
Hello All

I have one RadGrid in which in one column there is a RadListView.
I am binding that RadListView in ItemDataBound event of the RadGrid.

I have also applied the grouping functionality on each column of the RadGrid. But now I want to apply the grouping on the column having the RadListView.

Is there any example or any suggestion for this ??

Thanks In advance to all.
Hardik
Top achievements
Rank 1
 asked on 28 Feb 2012
3 answers
94 views
Why isnt the video in Silverlight, and would it be possible to have a download link for the video so we can watch offline? (and for those without the FlashPlayer?)
Yana
Telerik team
 answered on 24 Feb 2012
0 answers
96 views

First, saying hi to all of you would be nice.

I'm new on the forum but had bunch of visits lately here.

To everybody who don't know me, why am I here? I would like to introduce a new project for fun and entertainment on the Internet domain http://wowhub.com I recently bought. Then I wrote a complete project to breakmedia wich agreed to finance my project with 2400$ wich would be enough to pay good programmers and marketing experts.

Site will be something like funnyhub.com (Forum community + Video zone)

So I would like to find a bunch of people knowing different web design, forum and comunity related stuff to contact me on my email admin@wowhub.com


Thanks guys, hope we'll have a nice journey!

Marko
Top achievements
Rank 1
 asked on 22 Feb 2012
0 answers
100 views
OK so Devexpress screwed up recently,  they changed the look of their website and in doing do screwed big time with the menus structures.  As such everyone was annoyed.

So today I goto the Telerik site and OK the look hasn't changed that much but the menus are ... screwed.  You now have to hunt through levels of menus that were not there.

What I don't get about all this from both yourselves and Devexpress is that you are two companies that take pride on the fact that you try and provide controls that make doing good menus easier.  But you don't use them yourselves.

At the moment I can see the top line has a single thing in the middle saying Menu,clicking on it pulls down a fairly useless menu.  You then have to go to other web pages to get to say the Demos or forums.  Yes I could setup loads of bookmarks but I don't want to have to do that, I'm not always logged in and sometimes I clear my cache because of the rubbish that clogs it up.

Come on, lets think before we change things for no reason or advantage...  

I know that you'll argue that you have a growing portfolio, don't we all, hiding useful stuff and making navigation more complex is not the solution.

Rant over.

Cheers,

Jon

Jon
Top achievements
Rank 1
 asked on 10 Feb 2012
1 answer
374 views

Hi Telerik Team

We are using control from Winnovative software to convert html to pdf.When we try to export it to pdf we get distorted image.There is noproblem with the html view.Please help me with the solution.Software version is 3.7.1.0

Steve
Top achievements
Rank 1
 answered on 08 Feb 2012
1 answer
107 views
In rad editor, if i click cut,copy and paste image buttons it shows please click ctrl + x for cut etc.. Please help me, Suppose i click cut image button the selected text must be cut. what i do for it?
Rumen
Telerik team
 answered on 24 Jan 2012
4 answers
1,000 views

Hi,
I'm coding an HTML Application for a multimedia cd-rom.
The page is chromeless (no borders, nor titlebar etc..) so i implemented custom titlebar and close button.
My problem is moving the window as a normal window, with a mousedown on the titlebar.

And this is quite weird 'cause it works with any other events, as onclick and ondblclick ! desperately user-unfriendly..  :( 

Please help ! Thanks.

Here's the code :

webpad.hta
to move the window, double click on its body - a click stops moving


<html><head>
<HTA:APPLICATION ID="webpad0"
APPLICATIONNAME="webpad"
BORDER="none"
INNERBORDER="no"
CAPTION="yes"
SELECTION="no"
SHOWINTASKBAR="yes"
SINGLEINSTANCE="yes"
SYSMENU="yes"
SCROLL="no"
TITLEBAR="no"
ICON="ico.ico"
NAVIGABLE="true"
SCROLLFLAT="yes"
SCROLL="no"></HTA:APPLICATION>


<link href="test.css" rel="stylesheet" type="text/css">
<title>&nbsp;webpad&nbsp;</title>

<script language="jscript">

function theerror()
{
 //erreur = "Message d'erreur:\n"+ nouvelle+"\n"+fichier+"\n"+ligne;
 //alert(erreur);
 return true;
}
window.onerror = theerror;
// ERROR REPORTING ON/OFF (on)
</script>


<script language="vbscript">
//ONLOAD RESIZING
 dim winHeight
 dim winWidth
 dim centerX
 dim centerY
 
 winWidth=600
 winHeight=350 
 
 centerX=(screen.width/2)-(winWidth/2) 
 centerY=(screen.height/2)-(winHeight/2)
 
 window.resizeto winWidth,winHeight
 //window.moveto centerX,centerY
</script>

 

<script language="JavaScript" defer="defer">
// HERE IT IS : MOVING FUNCTIONS
var starMoving;
var posX;
var posY;
var isMoving=false;


function setPos(){ 

  posX=event.screenX-(winWidth/2);
  posY=event.screenY-12;

 document.all("viewpos").innerHTML="&nbsp;:&nbsp;x"+posX+"/y"+posY;
 document.all("infos").innerHTML=isMoving;
 
 if( isMoving == true ){
   window.moveTo(posX,posY);
 }
 
}

function moving(){
 isMoving=true;
}

function stopMoving(){
 isMoving=false;
}

function closeHTA(){
 window.close();
}
</script>
</head>


<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onmousemove="setPos()" ondblclick="moving()" onmouseup="stopMoving()">

 
 
<table id="titlebar" border="0" cellspacing="0" cellpadding="0" >
  <tr>
 <td width="493" align="left" valign="middle" >
 <span id="menubut" >&nbsp;&#9632;&nbsp;webpad&nbsp;&nbsp;&nbsp;</span>
 </td>
 <td width="289" align="left" valign="middle" >&nbsp;</td>
 <td width="20" align="center" valign="middle" id="exitButton" onMouseDown="closeHTA()">
   <a href="#"><strong>x</strong></a> </td>
  </tr>
</table> 
<br/>
<br/>

<div id="infos"></div>
<br>
<span id="viewpos"></span>


</body></html>

Paul
Top achievements
Rank 1
 answered on 20 Jan 2012
0 answers
82 views
HTTP Links (except for Youtube links) seem to work without using the "Insert Link" manager.

If the "Insert Link" manager is not used then a link such as:

http://www.youtube.com/watch?v=adi4ADVlUvg

gets text-transformed into all lower case characters breaking the original link, e.g.

http://www.youtube.com/watch?v=adi4adviuvg

Is there a css (or any other) way around this?

Paul Brown
Vancouver BC
Paul
Top achievements
Rank 1
 asked on 19 Jan 2012
2 answers
58 views
Hi All,
       
          Please provide some facility to add user
as friend or create friends groups. It feels very alone
and lonely in telerik forums.

And please tell me if this facility is already there.

Thanks and Regards
Rahul
Rahul
Top achievements
Rank 2
 answered on 18 Jan 2012
12 answers
436 views
Can telerik perhaps start to think about Minifying their CSS, or at least providing a property through the stylesheetmanager to ENABLE downloading the minified version(s)?  Once the versions are up on your CDN, they're pretty set in stone right...?  I can understand the PITA issues with doing it inside of the Web.UI assembly...but the CDN versions should be static up there tied to their version right?

Take a peek at the webmail demo for example (my favorite btw)

You can shave off 36k or 19% of the size of the downloaded CSS with no side effects.  If you use Google PageSpeed It's just removing the whitespace and makeing each style be on it's own line....shouldn't affect IE6 (which I assume is why you're not doing it?).  We've certainly never had any style side effects with a heavier dynamic minifier on the CSS (compresses the entire thing to 1 line on the fly ).
Simon
Telerik team
 answered on 16 Jan 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
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
Iron
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?