Galaxy S3 is unboxing
Finally, I replaced my Galaxy S with Galaxy S3. It got the same type of box as Galaxy S.
But there are a number of improvements. That is more stylish and more light! Moreover, that is faster. I found Skype in Galaxy S is very slow, but Galaxy S3 can handle this without any problems.
Lastly, the screen is much pretty!
How to remove the VirtueMart Logo
There is an option to turn off VirtueMart Logo.
1. Go to the VirtueMart Component in Admin.
2. Click Admin->Configuration.
3. Go to the "Site" tab.
4. Unchecked "Show footer".
Finally, all VirtueMart will be gone.
CSS- Display:table is not working in IE7 before
Div table is more flexible. But Before IE8, it did not support display:table. If you build a table for old browsers, please use the HTML <table> tag.
How to add shortcut in control panel in Joomla
I wish to add a shortcut in the control panel in Joomla.That is the homepage of admin interface in Joomla. So that, the user is easier to access a component. That is so easy!
You just need to modify \administrator\modules\mod_quickicon\mod_quickicon.php
And at the end of the file, adding the following codes:
Code
$link = 'index2.php?option=com_virtuemart'; | |
quickiconButton( $link, 'menu_logo.gif', 'virtuemart' ); |
onListItemClick is not working
You need to build a sub-class of ListActivity. Then you can override onListItemClick to catch the event on click when the list item is clicked. But that is not always working, if you use your custom list adapter and inside the adapter has any button, check box and image button. If the adapter has this kind of checkable item, they seems to be catch the click event before onListItemClick. So onListItemClick is not work.
I found this problem when I build my AdvGen To Do List.