Server Management
FileMaker PHP Site Assistant - iPhone用レイアウトでヘッダボタンがずれる件 10/14/2010 09:25:37
FileMaker Server の一機能であるPHP Site Assistantでは、iPhone用のレイアウトも作成できる。
しかし、一覧表示などのページで表示される、ヘッダ部分の送りボタンのレイアウトが崩れる問題がある。
その問題を解決するには、生成されたfmview.phpの220-230行目あたりにある、下記のプログラム部分を修正することで対応可能である。



【修正前】
$links = array (
'first' => '1番目',
'prev' => '前へ',
'records' => array (
'rangestart' => 0,
'rangeend' => 0,
'foundcount' => 0
),
'next' => '次へ',
'last' => '最後'
);



【修正後】

$links = array (
'first' => 'first',
'prev' => 'prev',
'records' => array (
'rangestart' => 0,
'rangeend' => 0,
'foundcount' => 0
),
'next' => 'next',
'last' => 'last'
);



Comments

Add comment for this article
Comment
URL
Password (You can revise your comment later with this password.)
Security Code
Input this text in the right textarea.
 



03enterprise

Copyright © Majestic, Inc. Privacy Policy