I want to create a shelf view. I explore various codes also, but those are quite complex. I have an idea to implement the same but i am not sure for that.
Can we place a background drawable to the grid row wise??
Thanks in advance
After exploring, i got the solution. The solution require two steps:
1.Creation of class which extends GridView Class.
2.Adding this class in to the layout in which grid view needs to be display.
For better understanding "http://erikwallentinsen.wordpress.com/2010/11/08/android-row-background-in-gridview/" will help you.
Related
SilverStripe CMS interface you can make the table editable, such as add and remove rows, as well as edit text and information inside the cells. Is there any component that can help?
Just for example
this is the result I would like to achieve
Thank you
Posting my comment as an answer as it seem to have helped the questioner.
Here's a useful module for extending the grid field functionality https://github.com/symbiote/silverstripe-gridfieldextensions. According to the documentation there's a component which allows inline editing GridFieldEditableColumns - allows inline editing of records. I've not used that specific component myself so I can't give any details on how it works, but it can be worth to check it out.
I have used the datepicker object in flex to choose dates. I was wondering if anyone knew of any component that allowed the time to be picked from the same object.
For example something similar to
from http://jdevadf.oracle.com/adf-richclient-demo/docs/tagdoc/af_inputDate.html
I have some space issues in my UI and this would really help. Does anyone know of a library for this sort of component
Thanks
I don't know of any custom component which can suit your needs. You can develop your own custom component in Flex, by following UIComponent life cycle. Refer to any existing component e.g. Panel to understand it better. (You can find the source of the component in flex sdk folder)
I would like to create an order form for my ASP.net page (I included an example image below). However I don't know how to approach this. I'm assuming the best method would be a gridview but it would involve two levels of grouping. Other requirements would be be to accept a quantity and then calculate the total price. Can anyone point me to some good books or websites that explain creating custom grid views like this (or maybe a better method than using gridview, I'm open to whatever).
I consider myself to be an intermediate programmer in asp.net. I understand a lot of the concepts but I'm trying to learn more practical ways of doing things. Thanks for any knowledge you can provide!
Use a ListView, for two reasons:
It will produce clean markup
Using templates will give you the layout you desire
Here's an example of the type of layout you are after and how to achieve it:
ListView Web Server Control Overview
I want to create a news application for my website.
My question is how should i create drag-able panels/canvas inside another panel/canvas.
What i exactly intend to do can be seen on netvibes.com . The website has different panels of every news group, and this panel could be moved from one place to other, but in a well defined manner. And the other panel take over the place of dragged panel.
Is there any component in flex, which can help me make something like that.
If i was unable to make my question clear, plz let me know, i will try to make it more clear.
Regards
Zeeshan
A TileList with drag and drop enabled should be able to accomplish something like that. Or, use a Spark List with a custom layout that you create.
It might be a bit tricky getting the list elements to drag and drop based on clicking the title, but it should be doable.
I think you should consider a more advanced solution with drap-n-drop with a custom panel based component. The places the panels can move can be implemented with a different custom canvas based component. The advantage would be to move the components into different custom positions and panels can be resized independent of each other.
Adobe has some good tutorials for drag-drop operations.
I'm a newbie to Adobe Flex 3.0. I need to show data within the Pie Chart Legend, alongside the colored markers. I have a few vague ideas about how to go about it. (Maybe I would have to write my custom legendMarkerRenderer.) Could anybody give any pointers? There aren't many examples on the net regarding this.
Thanks in advance!
P.R.
To show the data on the Legend you will need to extend LegendItem class. Example you can see in my blog: http://northam.blogspot.com/2009/05/flex-showing-data-in-legend-of-pie.html
Enjoy!
You can always customize the UI controls in flex as per ur requirements.
So you can extend the legend class
have a look # this also:liveDocs
Here's a really useful link for you. The Flex 3 Component explorer... It has examples of how to implement the majority, if not all, of the adobe flex components. If you want something more complex you may need to extend legend and create you own component. By the sounds of things it should give you enough to go on
Flex 3 Component Explorer (broken link)