-
16 Oct 2012 3:36 AM #1
Put an image over a cell - cell position
Put an image over a cell - cell position
Hello,
I want to put an image over a cell of a grid. The image should overhang beyond one border.
In the renderer function of the column I tryed this:
But I get the wrong position of the cell. What could be wrong?Code:renderer: function(value, metadata, record) { var pos = this.getPosition(); value = '<div style="position:absolute;top:' + pos[0] + 'px;left:' + pos[1] + 'px;z-index:1;"><img src="image.png" /></div>'; return value; }
Regards
Tilo
-
23 Oct 2012 5:37 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 34,107
- Vote Rating
- 453
So in each row in this column you want an image but that image needs to be larger than that cell?
Mitchell Simoens @SenchaMitch
Sencha Inc, Senior Forum Manager
________________
http://www.JSONPLint.com - Source to lint your JSONP!
Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
https://github.com/mitchellsimoens
Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/
Need more help with your app? Hire Sencha Services services@sencha.com
Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!
When posting code, please use BBCode's CODE tags.
-
23 Oct 2012 7:06 AM #3
Yes, in several rows conditional on the value. And yes, the image needs to be larger than the cell. With the image I want to point graphically (maybe with an arrow) to the next cell or to the cell below.


Reply With Quote